Browse Source

fix(core): Fix type error (missing isPrivate property)

Michael Bromley 6 years ago
parent
commit
4d1cd658ff
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/core/src/data-import/providers/importer/importer.ts

+ 1 - 0
packages/core/src/data-import/providers/importer/importer.ts

@@ -291,6 +291,7 @@ export class Importer {
                     facetEntity = existing;
                 } else {
                     facetEntity = await this.facetService.create({
+                        isPrivate: false,
                         code: normalizeString(facetName, '-'),
                         translations: [{ languageCode, name: facetName }],
                     });