Lint
This commit is contained in:
parent
876522bf1e
commit
d331072f9a
|
@ -2,7 +2,7 @@
|
|||
import { getContext } from "svelte"
|
||||
import { ActionButton, Popover, Toggle } from "@budibase/bbui"
|
||||
|
||||
const { columns, loaded } = getContext("sheet")
|
||||
const { columns } = getContext("sheet")
|
||||
|
||||
let open = false
|
||||
let anchor
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
SmallRowHeight,
|
||||
} from "../lib/constants"
|
||||
|
||||
const { rowHeight, loaded, columns, table } = getContext("sheet")
|
||||
const { rowHeight, columns, table } = getContext("sheet")
|
||||
const sizeOptions = [
|
||||
{
|
||||
label: "Small",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
import { getContext } from "svelte"
|
||||
import { ActionButton, Popover, Select } from "@budibase/bbui"
|
||||
|
||||
const { sort, visibleColumns, stickyColumn, loaded } = getContext("sheet")
|
||||
const { sort, visibleColumns, stickyColumn } = getContext("sheet")
|
||||
const orderOptions = [
|
||||
{ label: "A-Z", value: "ascending" },
|
||||
{ label: "Z-A", value: "descending" },
|
||||
|
|
Loading…
Reference in New Issue