package-lock.json is updated and back. The client is hopefully fixed w.r.t. #571.
This commit is contained in:
parent
c00bd68123
commit
055c4c6b51
6 changed files with 28602 additions and 7 deletions
11994
client/package-lock.json
generated
Normal file
11994
client/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -253,8 +253,8 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
|
|||
|
||||
const grapesJSSourceTypes = getGrapesJSSourceTypeOptions(t);
|
||||
const grapesJSSourceTypeLabels = {};
|
||||
for (const { key, label } of grapesJSSourceTypes) {
|
||||
grapesJSSourceTypeLabels[key] = label;
|
||||
for (const srcType of grapesJSSourceTypes) {
|
||||
grapesJSSourceTypeLabels[srcType.key] = srcType.label;
|
||||
}
|
||||
|
||||
templateTypes.grapesjs = {
|
||||
|
@ -389,11 +389,8 @@ export function getTemplateTypes(t, prefix = '', entityTypeId = ResourceType.TEM
|
|||
|
||||
const codeEditorSourceTypes = getCodeEditorSourceTypeOptions(t);
|
||||
const codeEditorSourceTypeLabels = {};
|
||||
for ({
|
||||
key,
|
||||
label
|
||||
} of codeEditorSourceTypes) {
|
||||
codeEditorSourceTypeLabels[key] = label;
|
||||
for (const srcType of codeEditorSourceTypes) {
|
||||
codeEditorSourceTypeLabels[srcType.key] = srcType.label;
|
||||
}
|
||||
|
||||
templateTypes.codeeditor = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue