mirror of
https://github.com/nasa/openmct.git
synced 2025-02-01 08:48:28 +00:00
[Plot] Remove unnecessary fallback
This commit is contained in:
parent
a88fadcb49
commit
d60bf94501
@ -122,8 +122,8 @@ define(
|
||||
// Reinstantiate the plot updater (e.g. because we have a
|
||||
// new subscription.) This will clear the plot.
|
||||
function recreateUpdater() {
|
||||
var domain = ($scope.axes[0].active || {}).key,
|
||||
range = ($scope.axes[1].active || {}).key,
|
||||
var domain = $scope.axes[0].active.key,
|
||||
range = $scope.axes[1].active.key,
|
||||
duration = PLOT_FIXED_DURATION;
|
||||
|
||||
updater = new PlotUpdater(handle, domain, range, duration);
|
||||
|
Loading…
x
Reference in New Issue
Block a user