Use friendly name when adding instances of custom components

This commit is contained in:
Andrew Kingston 2022-09-30 11:26:33 +01:00
parent 34ec25af1d
commit 293ab37636
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ export const getFrontendStore = () => {
_id: Helpers.uuid(),
_component: definition.component,
_styles: { normal: {}, hover: {}, active: {} },
_instanceName: `New ${definition.name}`,
_instanceName: `New ${definition.friendlyName || definition.name}`,
...cloneDeep(props),
...extras,
}