fix(dees-button): Fix reflect attribute for disabled property on dees-button component

This commit is contained in:
2024-10-06 01:12:00 +02:00
parent 68992301ff
commit f5fad07038
3 changed files with 8 additions and 2 deletions

View File

@ -35,7 +35,8 @@ export class DeesButton extends DeesElement {
public eventDetailData: string;
@property({
type: Boolean
type: Boolean,
reflect: true,
})
public disabled = false;