Update src/packages/documents/document-types/workspace/views/design/document-type-workspace-view-edit-property.element.ts

Co-authored-by: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com>
This commit is contained in:
Lone Iversen
2023-08-11 13:03:25 +02:00
committed by Jacob Overgaard
parent 66bda82d10
commit ebe1bb64b1

View File

@@ -145,7 +145,7 @@ export class UmbDocumentTypeWorkspacePropertyElement extends UmbLitElement {
label="description"
name="description"
id="description-input"
placeholder="Enter a description..."
placeholder=${this.localize.term('placeholders_enterDescription')}
.value=${this.property.description}
@input=${(e: CustomEvent) => {
if (e.target) this._singleValueUpdate('description', (e.target as HTMLInputElement).value);