Lint
This commit is contained in:
parent
624e13a49c
commit
df54d5dd2b
|
@ -1,7 +1,7 @@
|
|||
<script>
|
||||
import DraggableList from "../DraggableList/DraggableList.svelte"
|
||||
import ButtonSetting from "./ButtonSetting.svelte"
|
||||
import { createEventDispatcher, onMount } from "svelte"
|
||||
import { createEventDispatcher } from "svelte"
|
||||
import { Helpers, Menu, MenuItem, Popover } from "@budibase/bbui"
|
||||
import { componentStore } from "stores/builder"
|
||||
import { getEventContextBindings } from "dataBinding"
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import { Helpers } from "@budibase/bbui"
|
||||
import { BaseStructure } from "./BaseStructure"
|
||||
import { componentStore } from "stores/builder"
|
||||
|
||||
export class Component extends BaseStructure {
|
||||
constructor(name, _id = Helpers.uuid()) {
|
||||
|
|
|
@ -2,7 +2,6 @@ import inline from "./inline"
|
|||
import modal from "./modal"
|
||||
import sidePanel from "./sidePanel"
|
||||
import newScreen from "./newScreen"
|
||||
import { getRowActionButtonTemplates } from "templates/rowActions"
|
||||
|
||||
const createScreen = async ({ tableOrView, type, permissions, screens }) => {
|
||||
if (type === "inline") {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<script>
|
||||
import { getContext, onMount } from "svelte"
|
||||
import { Button, CollapsedButtonGroup, Select } from "@budibase/bbui"
|
||||
import { Button, CollapsedButtonGroup } from "@budibase/bbui"
|
||||
import GridCell from "../cells/GridCell.svelte"
|
||||
import GridScrollWrapper from "./GridScrollWrapper.svelte"
|
||||
import { BlankRowID } from "../lib/constants"
|
||||
|
|
Loading…
Reference in New Issue