mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
[Time Conductor] Fix logic around end times
Fix logic for updating end times after refactoring to clarify variable/property naming, WTD-1515
This commit is contained in:
@ -186,7 +186,7 @@ define(
|
|||||||
ngModel.inner.start =
|
ngModel.inner.start =
|
||||||
Math.max(ngModel.outer.start, ngModel.inner.start);
|
Math.max(ngModel.outer.start, ngModel.inner.start);
|
||||||
ngModel.inner.end =
|
ngModel.inner.end =
|
||||||
Math.max(ngModel.outer.end, ngModel.inner.end);
|
Math.max(ngModel.outer.start, ngModel.inner.end);
|
||||||
updateViewForInnerSpanFromModel(ngModel);
|
updateViewForInnerSpanFromModel(ngModel);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user