Skip to content

Commit

Permalink
fix: isEditable not considered
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfriesen committed Jun 13, 2024
1 parent 955b038 commit 53a224a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export class NgxMatTimepickerControlComponent implements OnChanges {

id: number = NgxMatTimepickerControlComponent.nextId++;
isFocused: boolean;

@Input() max: number;
@Input() min: number;
@Input() placeholder: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="wrapper" [class.active]="isActive()">
@if (!isEditable) {
@if (!isEditable()) {
<input
readonly
class="control"
Expand Down

0 comments on commit 53a224a

Please sign in to comment.