Linting.
This commit is contained in:
parent
d70313c8e8
commit
28d3d4462e
|
@ -23,7 +23,10 @@
|
||||||
focus = false
|
focus = false
|
||||||
}
|
}
|
||||||
|
|
||||||
const getStyleString = (attribute: string, value: string | number | undefined) => {
|
const getStyleString = (
|
||||||
|
attribute: string,
|
||||||
|
value: string | number | undefined
|
||||||
|
) => {
|
||||||
if (!attribute || value == null) {
|
if (!attribute || value == null) {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
export let createDatasource = false
|
export let createDatasource = false
|
||||||
export let onCancel: (() => void) | undefined = undefined
|
export let onCancel: (() => void) | undefined = undefined
|
||||||
|
|
||||||
const data = writable<{ url: string, raw: string, file?: any }>({
|
const data = writable<{ url: string; raw: string; file?: any }>({
|
||||||
url: "",
|
url: "",
|
||||||
raw: "",
|
raw: "",
|
||||||
file: undefined,
|
file: undefined,
|
||||||
|
|
Loading…
Reference in New Issue