mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 22:42:24 +00:00
d863c2843c
Modify tree so that it includes its root in most cases, for WTD-922.
15 lines
444 B
HTML
15 lines
444 B
HTML
<ul class="tree">
|
|
<li ng-if="!composition">
|
|
<span class="tree-item">
|
|
<span class="icon wait-spinner"></span>
|
|
<span class="title-label">Loading...</span>
|
|
</span>
|
|
</li>
|
|
<li ng-repeat="child in composition">
|
|
<mct-representation key="'tree-node'"
|
|
mct-object="child"
|
|
ng-model="ngModel">
|
|
</mct-representation>
|
|
</li>
|
|
</ul>
|