Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/visualBuilder/utils/__test__/isFieldDisabled.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe("isFieldDisabled", () => {
const result = isFieldDisabled(fieldSchemaMap, eventFieldDetails);
expect(result.isDisabled).toBe(true);
expect(result.reason).toBe(
"Open an Experience from Audience widget to start editing"
"To edit an experience, open the Audience widget and click the Edit icon."
);
});

Expand Down
2 changes: 1 addition & 1 deletion src/visualBuilder/utils/isFieldDisabled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const DisableReason = {
LocalizedEntry: "Editing this field is restricted in localized entries",
UnlinkedVariant:
"This field is not editable as it is not linked to the selected variant",
AudienceMode: "Open an Experience from Audience widget to start editing",
AudienceMode: "To edit an experience, open the Audience widget and click the Edit icon.",
DisabledVariant:
"This field is not editable as it doesn't match the selected variant",
UnlocalizedVariant: "This field is not editable as it is not localized",
Expand Down
Loading