Fix other accidental renames

This commit is contained in:
Andrew Kingston 2024-12-18 10:53:51 +00:00
parent 87d14ff906
commit 7cee1cd266
No known key found for this signature in database
7 changed files with 12 additions and 12 deletions

View File

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

View File

@ -1,5 +1,5 @@
{
"@/actions": [
"actions": [
{
"name": "Save Row",
"type": "data",

View File

@ -18,7 +18,7 @@
let iconsList = [
"Apps",
"@/actions",
"Actions",
"ConversionFunnel",
"App",
"Briefcase",

View File

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

View File

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

View File

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

View File

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