diff --git a/packages/builder/src/dataBinding.js b/packages/builder/src/dataBinding.js index 7c6a28e948..278ce1f5a3 100644 --- a/packages/builder/src/dataBinding.js +++ b/packages/builder/src/dataBinding.js @@ -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, diff --git a/packages/builder/src/dataBinding.test.js b/packages/builder/src/dataBinding.test.js index ca95854d33..5e3b484e22 100644 --- a/packages/builder/src/dataBinding.test.js +++ b/packages/builder/src/dataBinding.test.js @@ -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, })