lint ✨
This commit is contained in:
parent
2ac02b9f44
commit
0f8b3c52be
|
@ -2,7 +2,15 @@
|
|||
import { goto } from "@roxi/routify"
|
||||
import { allScreens, store } from "builderStore"
|
||||
import { tables } from "stores/backend"
|
||||
import {ActionMenu, Icon, Input, MenuItem, Modal, ModalContent, notifications} from "@budibase/bbui"
|
||||
import {
|
||||
ActionMenu,
|
||||
Icon,
|
||||
Input,
|
||||
MenuItem,
|
||||
Modal,
|
||||
ModalContent,
|
||||
notifications,
|
||||
} from "@budibase/bbui"
|
||||
import ConfirmDialog from "components/common/ConfirmDialog.svelte"
|
||||
|
||||
export let table
|
||||
|
@ -17,7 +25,9 @@
|
|||
$: external = table?.type === "external"
|
||||
|
||||
function showDeleteModal() {
|
||||
templateScreens = $allScreens.filter(screen => screen.autoTableId === table._id)
|
||||
templateScreens = $allScreens.filter(
|
||||
screen => screen.autoTableId === table._id
|
||||
)
|
||||
willBeDeleted = ["All table data"].concat(
|
||||
templateScreens.map(screen => `Screen ${screen.props._instanceName}`)
|
||||
)
|
||||
|
|
|
@ -8,7 +8,10 @@ const { getAutomationParams } = require("../db/utils")
|
|||
const { coerce } = require("../utilities/rowProcessor")
|
||||
const { utils } = require("@budibase/auth/redis")
|
||||
const { JobQueues } = require("../constants")
|
||||
const { isExternalTable, breakExternalTableId } = require("../integrations/utils")
|
||||
const {
|
||||
isExternalTable,
|
||||
breakExternalTableId,
|
||||
} = require("../integrations/utils")
|
||||
const { getExternalTable } = require("../api/controllers/table/utils")
|
||||
|
||||
const { opts } = utils.getRedisOptions()
|
||||
|
|
Loading…
Reference in New Issue