# 이슈처리
121 예약 설정 화면 60분 보여짐 :: 프로그램 수정 및 입력 필드 readonly 처리.
This commit is contained in:
parent
35e61706da
commit
267c404fd1
@ -42,6 +42,9 @@ export class PickTimeComponent implements OnInit {
|
||||
this.hourSelected.emit(hour);
|
||||
}
|
||||
onChangedMinute(minute: number) {
|
||||
if (!!minute && minute === 60) {
|
||||
minute = minute - this.minuteStep;
|
||||
}
|
||||
this.minuteSelected.emit(minute);
|
||||
}
|
||||
}
|
||||
|
@ -6,6 +6,7 @@
|
||||
matInput
|
||||
#input
|
||||
class="stepper-input"
|
||||
readonly
|
||||
[attr.maxlength]="maxLength"
|
||||
[attr.placeholder]="placeholder"
|
||||
[attr.disabled]="disabled"
|
||||
|
Loading…
x
Reference in New Issue
Block a user