1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00
This commit is contained in:
Andrew Kingston 2023-04-18 10:54:10 +01:00
parent 876522bf1e
commit d331072f9a
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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",

View file

@ -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" },