117544: fix remaining bug

This commit is contained in:
Jens Vannerum
2024-09-16 16:09:41 +02:00
parent eb5aadaf8a
commit d3e87c68fd

View File

@@ -18,7 +18,7 @@ import {
*/ */
export class BtnDisabledDirective { export class BtnDisabledDirective {
@Input() set dsDisabled(value: boolean) { @Input() set dsBtnDisabled(value: boolean) {
this.isDisabled = !!value; this.isDisabled = !!value;
} }