Skip to content

Commit 7af2212

Browse files
committed
Prevent tabbing into end bounds when not in fixed mode
1 parent 8e59072 commit 7af2212

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

platform/commonUI/general/res/templates/controls/datetime-field.html

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
ng-model="textValue"
2525
ng-blur="restoreTextValue(); ngBlur()"
2626
ng-mouseup="ngMouseup()"
27+
ng-disabled="ngDisabled"
2728
ng-class="{
2829
error: textInvalid ||
2930
(structure.validate &&

platform/features/conductor-v2/res/templates/time-conductor.html

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
}"
5353
ng-model="formModel"
5454
ng-blur="tcController.updateBoundsFromForm(formModel)"
55+
ng-disabled="modeModel.selectedKey !== 'fixed'"
5556
field="'end'"
5657
class="time-range-input">
5758
</mct-control>

0 commit comments

Comments
 (0)