Lint fixes
This commit is contained in:
parent
13f6fed101
commit
ef6f8e2abf
|
@ -22,10 +22,7 @@ import { TableNames } from "../constants"
|
|||
import { JSONUtils } from "@budibase/frontend-core"
|
||||
import ActionDefinitions from "components/design/settings/controls/ButtonActionEditor/manifest.json"
|
||||
import { environment, licensing } from "stores/portal"
|
||||
import {
|
||||
convertOldFieldFormat,
|
||||
getComponentForField,
|
||||
} from "components/design/settings/controls/FieldConfiguration/utils"
|
||||
import { convertOldFieldFormat } from "components/design/settings/controls/FieldConfiguration/utils"
|
||||
|
||||
// Regex to match all instances of template strings
|
||||
const CAPTURE_VAR_INSIDE_TEMPLATE = /{{([^}]+)}}/g
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
on:drawerShow={e => {
|
||||
drawers = [...drawers, e.detail]
|
||||
}}
|
||||
on:drawerHide={e => {
|
||||
on:drawerHide={() => {
|
||||
drawers = drawers.slice(0, -1)
|
||||
}}
|
||||
/>
|
||||
|
|
|
@ -12,11 +12,13 @@
|
|||
<Icon name={icon} />
|
||||
{title || ""}
|
||||
</div>
|
||||
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
|
||||
{@html body}
|
||||
{:else}
|
||||
<span class="icon">
|
||||
<Icon name={icon} />
|
||||
</span>
|
||||
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
|
||||
{@html body}
|
||||
{/if}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue