don't render add button when readonly

This commit is contained in:
Mads Rasmussen
2023-01-23 13:54:47 +01:00
parent 9ccaa113e7
commit 25e7732f8f

View File

@@ -178,7 +178,7 @@ export class UmbInputMultipleTextStringElement extends FormControlMixin(UmbLitEl
render() {
return html`
${this._renderItems()}
${this.readonly
${this.disabled || this.readonly
? nothing
: html`<uui-button
id="action"