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 9a43f865c9
commit d9a4f4b98d
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,
}