mirror of
https://github.com/nasa/openmct.git
synced 2025-05-31 06:31:04 +00:00
* Use datum key of 'utc' for timestamp * Do not try to get column values for data that does not have those values * Collapse current time system columns * Noop parsing for numbers in LocalTimeFormat * Do not attempt to provide data for columns that object does not have telemetry for. Fixes #2027
16 lines
512 B
HTML
16 lines
512 B
HTML
<div ng-controller="TelemetryTableController as tableController"
|
|
ng-class="{'loading': loading}">
|
|
<mct-table
|
|
headers="headers"
|
|
rows="rows"
|
|
time-columns="[tableController.table.timeSystemColumnTitle]"
|
|
format-cell="formatCell"
|
|
enableFilter="true"
|
|
enableSort="true"
|
|
auto-scroll="autoScroll"
|
|
default-sort="defaultSort"
|
|
export-as="{{ exportAs }}"
|
|
class="tabular-holder l-sticky-headers has-control-bar">
|
|
</mct-table>
|
|
</div>
|