From d88cbac9001db4e014824809b78bf71ac3661ef3 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Wed, 1 Mar 2023 11:33:20 +0000 Subject: [PATCH] Remove console.log --- .../uis/date-picker/property-editor-ui-date-picker.element.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts index 29033f6511..a9c698f475 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/property-editors/uis/date-picker/property-editor-ui-date-picker.element.ts @@ -52,9 +52,7 @@ export class UmbPropertyEditorUIDatePickerElement extends UmbLitElement { @property({ type: Array, attribute: false }) public set config(config: Array) { - - console.log('config', config); - + // Format string prevalue/config this._format = config.find((x) => x.alias === 'format')?.value; const pickTime = this._format?.includes('H') || this._format?.includes('m');