diff --git a/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.spec.ts b/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.spec.ts index 6531fcdc8e87..82a60972be2e 100644 --- a/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.spec.ts +++ b/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.spec.ts @@ -233,7 +233,7 @@ describe('DotPaletteStore', () => { lang: '1', filter: '', offset: '0', - query: '+contentType: product' + query: '+contentType: product +deleted: false' }); expect(data.contentlets).toEqual([ contentletProductDataMock diff --git a/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.ts b/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.ts index 33b58eff2341..d114619906c9 100644 --- a/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.ts +++ b/core-web/apps/dotcms-ui/src/app/portlets/dot-edit-page/components/dot-palette/store/dot-palette.store.ts @@ -195,7 +195,7 @@ export class DotPaletteStore extends ComponentStore { lang: languageId || '1', filter: filter || '', offset: (event && event.first.toString()) || '0', - query: `+contentType: ${this.contentTypeVarName}` + query: `+contentType: ${this.contentTypeVarName} +deleted: false` }) .pipe(take(1)) .subscribe((response: ESContent) => {