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