Skip to content

Commit 25b9f37

Browse files
committed
Fixed loss of time system options on navigation
1 parent 6b482d4 commit 25b9f37

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

platform/features/conductor-v2/conductor/src/ui/TimeConductorController.js

+7
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,13 @@ define(
120120
$scope.formModel.startDelta = deltas.start;
121121
$scope.formModel.endDelta = deltas.end;
122122
}
123+
124+
// Show filtered list of time systems available for the
125+
// current mode
126+
var tickSourceType = this.modes[mode.key()].tickSourceType;
127+
$scope.timeSystemModel.options = this.timeSystemsForSourceType(tickSourceType).map(function (t) {
128+
return t.metadata;
129+
});
123130
} else {
124131
// Default to fixed mode
125132
this.setMode('fixed');

0 commit comments

Comments
 (0)