From c0f72e7eb4e9624234643b590f85ca88d9b04a67 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 8 Sep 2022 22:01:24 +0200 Subject: [PATCH] show trashed tag in content picker --- .../property-editors/property-editor-content-picker.element.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-content-picker.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-content-picker.element.ts index 26828170d9..23f3996feb 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-content-picker.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/property-editors/property-editor-content-picker.element.ts @@ -1,4 +1,4 @@ -import { css, html, LitElement } from 'lit'; +import { css, html, LitElement, nothing } from 'lit'; import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { customElement, property, state } from 'lit/decorators.js'; @@ -101,6 +101,7 @@ export class UmbPropertyEditorContentPicker extends UmbContextConsumerMixin(LitE private _renderItem(item: Entity) { return html` + ${item.isTrashed ? html` Trashed ` : nothing} this._removeItem(item)}>Remove