mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 21:28:12 +00:00
Fix incorrect property inspection (#3180)
- Fixed Folder grid and list views; - Fixed plot collapsed and expanded legends; Co-authored-by: Deep Tailor <deep.j.tailor@nasa.gov>
This commit is contained in:
committed by
GitHub
parent
db597e1e93
commit
f0e7f8cfc0
@ -36,7 +36,7 @@
|
||||
ng-class="{'is-cursor-locked': !!lockHighlightPoint }">
|
||||
<div class="c-state-indicator__alert-cursor-lock icon-cursor-lock" title="Cursor is point locked. Click anywhere in the plot to unlock."></div>
|
||||
<div class="plot-legend-item"
|
||||
ng-class="{'is-missing': series.status === 'missing'}"
|
||||
ng-class="{'is-missing': series.domainObject.status === 'missing'}"
|
||||
ng-repeat="series in series track by $index"
|
||||
>
|
||||
<div class="plot-series-swatch-and-name">
|
||||
@ -86,7 +86,7 @@
|
||||
</thead>
|
||||
<tr ng-repeat="series in series"
|
||||
class="plot-legend-item"
|
||||
ng-class="{'is-missing': series.status === 'missing'}"
|
||||
ng-class="{'is-missing': series.domainObject.status === 'missing'}"
|
||||
>
|
||||
<td class="plot-series-swatch-and-name">
|
||||
<span class="plot-series-color-swatch"
|
||||
|
Reference in New Issue
Block a user