Skip to content

Commit a6db536

Browse files
committed
fix: set default value of disabled to false
Signed-off-by: Akshat Patel <[email protected]>
1 parent 50774c0 commit a6db536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tag/tag-filter.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { Tag } from "./tag.component";
3232
})
3333
export class TagFilter extends Tag {
3434
@Input() closeButtonLabel = "Clear Filter";
35-
@Input() disabled: boolean;
35+
@Input() disabled = false;
3636
@Input() title: string;
3737

3838
/**

0 commit comments

Comments
 (0)