fix(core): update

This commit is contained in:
2023-01-17 16:52:13 +01:00
parent 719c63a092
commit 572deb990e
3 changed files with 8 additions and 3 deletions

View File

@@ -42,7 +42,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 : html`<slot></slot>`}
${this.text ? this.text : this.textContent}
</dees-button>
`;
}