fix(core): update

This commit is contained in:
2023-01-17 17:12:47 +01:00
parent 62087a686a
commit 1de86c6bfa
2 changed files with 2 additions and 3 deletions

View File

@@ -41,8 +41,7 @@ export class DeesFormSubmit extends DeesElement {
public render() {
return html`
<dees-button status=${this.status} @click=${this.submit} .disabled=${this.disabled}>
${this.text ? this.text : this.textContent}
<dees-button status=${this.status} @click=${this.submit} .disabled=${this.disabled} .text=${this.text ? this.text : this.textContent}>
</dees-button>
`;
}