Fix other accidental renames
This commit is contained in:
parent
87d14ff906
commit
7cee1cd266
|
@ -12,7 +12,7 @@
|
|||
export let bindings
|
||||
export let nested
|
||||
export let componentInstance
|
||||
export let title = "@/actions"
|
||||
export let title = "actions"
|
||||
|
||||
let drawer
|
||||
let tmpValue
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"@/actions": [
|
||||
"actions": [
|
||||
{
|
||||
"name": "Save Row",
|
||||
"type": "data",
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
let iconsList = [
|
||||
"Apps",
|
||||
"@/actions",
|
||||
"Actions",
|
||||
"ConversionFunnel",
|
||||
"App",
|
||||
"Briefcase",
|
||||
|
|
|
@ -837,7 +837,7 @@ export const getActionBindings = (actions, actionId) => {
|
|||
bindings.push({
|
||||
readableBinding: `Action ${idx + 1}.${contextValue.label}`,
|
||||
runtimeBinding: `actions.${idx}.${contextValue.value}`,
|
||||
category: "@/actions",
|
||||
category: "actions",
|
||||
icon: "JourneyAction",
|
||||
display: {
|
||||
name: contextValue.label,
|
||||
|
|
|
@ -129,7 +129,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 0,
|
||||
action: "add",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
})
|
||||
|
||||
expect(obj).toEqual([
|
||||
|
@ -203,7 +203,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 2,
|
||||
action: "delete",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
})
|
||||
|
||||
expect(obj).toEqual([
|
||||
|
@ -271,7 +271,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 2,
|
||||
action: "move",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
originalIndex: 4,
|
||||
})
|
||||
|
||||
|
@ -346,7 +346,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 2,
|
||||
action: "move",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
originalIndex: 0,
|
||||
})
|
||||
|
||||
|
@ -423,7 +423,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 2,
|
||||
action: "move",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
originalIndex: 1,
|
||||
})
|
||||
|
||||
|
@ -502,7 +502,7 @@ describe("Builder dataBinding", () => {
|
|||
obj,
|
||||
modifiedIndex: 0,
|
||||
action: "move",
|
||||
label: "@/actions",
|
||||
label: "Actions",
|
||||
originalIndex: 4,
|
||||
})
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
|
||||
const customRenderers = [
|
||||
{ column: "appSize", component: AppSizeRenderer },
|
||||
{ column: "@/actions", component: ActionsRenderer },
|
||||
{ column: "actions", component: ActionsRenderer },
|
||||
{ column: "createdAt", component: TimeAgoRenderer },
|
||||
{ column: "createdBy", component: UserRenderer },
|
||||
{ column: "status", component: StatusRenderer },
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
} from "@/stores/portal"
|
||||
import { goto } from "@roxi/routify"
|
||||
import { AppStatus } from "@/constants"
|
||||
import { gradient } from "@/actions"
|
||||
import { gradient } from "actions"
|
||||
import ProfileModal from "@/components/settings/ProfileModal.svelte"
|
||||
import ChangePasswordModal from "@/components/settings/ChangePasswordModal.svelte"
|
||||
import { processStringSync } from "@budibase/string-templates"
|
||||
|
|
Loading…
Reference in New Issue