1
0

117544: fix remaining bug

This commit is contained in:
Jens Vannerum
2024-09-16 16:09:41 +02:00
parent f65d6c5775
commit 4a7ebeea16

View File

@@ -12,7 +12,7 @@ import { Directive, Input, HostBinding, HostListener } from '@angular/core';
*/
export class BtnDisabledDirective {
@Input() set dsDisabled(value: boolean) {
@Input() set dsBtnDisabled(value: boolean) {
this.isDisabled = !!value;
}