mirror of
https://github.com/nasa/openmct.git
synced 2025-04-15 06:56:43 +00:00
[Time Conductor] Hide date-picker for non-UTC formats
This commit is contained in:
parent
e5ebbdaf7f
commit
71618ce4b9
@ -30,7 +30,7 @@
|
||||
ng-class="{ error: !boundsModel.startValid }">
|
||||
</input>
|
||||
<a class="ui-symbol icon icon-calendar"
|
||||
ng-if="parameters.system === undefined"
|
||||
ng-if="parameters.format === 'utc' || !parameters.format"
|
||||
ng-click="t1.toggle()">
|
||||
</a>
|
||||
<mct-popup ng-if="t1.isActive()">
|
||||
@ -55,7 +55,7 @@
|
||||
ng-class="{ error: !boundsModel.endValid }">
|
||||
</input>
|
||||
<a class="ui-symbol icon icon-calendar"
|
||||
ng-if="parameters.system === undefined"
|
||||
ng-if="parameters.format === 'utc' || !parameters.format"
|
||||
ng-click="t2.toggle()">
|
||||
</a>
|
||||
<mct-popup ng-if="t2.isActive()">
|
||||
|
Loading…
x
Reference in New Issue
Block a user