fix(core): update

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-catalog',
version: '1.0.148',
version: '1.0.149',
description: 'website for lossless.com'
}

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>
`;
}