mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 13:48:12 +00:00
Request batch when idle (#7526)
See https://github.com/nasa/openmct/pull/7526 for details
This commit is contained in:
@ -22,6 +22,7 @@
|
||||
|
||||
<template>
|
||||
<div
|
||||
aria-label="sub object frame"
|
||||
class="l-layout__frame c-frame"
|
||||
:class="{
|
||||
'no-frame': !item.hasFrame,
|
||||
|
@ -37,24 +37,24 @@
|
||||
:style="styleObject"
|
||||
:data-font-size="item.fontSize"
|
||||
:data-font="item.font"
|
||||
aria-label="Alpha-numeric telemetry"
|
||||
@contextmenu.prevent="showContextMenu"
|
||||
@mouseover.ctrl="showToolTip"
|
||||
@mouseleave="hideToolTip"
|
||||
>
|
||||
<div
|
||||
class="is-status__indicator"
|
||||
:aria-label="`This item is ${status}`"
|
||||
:title="`This item is ${status}`"
|
||||
></div>
|
||||
<div class="is-status__indicator"></div>
|
||||
<div v-if="showLabel" class="c-telemetry-view__label">
|
||||
<div class="c-telemetry-view__label-text">
|
||||
<div
|
||||
class="c-telemetry-view__label-text"
|
||||
:aria-label="`Alpha-numeric telemetry name for ${domainObject.name}`"
|
||||
>
|
||||
{{ domainObject.name }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-if="showValue"
|
||||
:aria-label="fieldName"
|
||||
:aria-label="`Alpha-numeric telemetry value of ${telemetryValue}`"
|
||||
:title="fieldName"
|
||||
class="c-telemetry-view__value"
|
||||
:class="[telemetryClass]"
|
||||
|
Reference in New Issue
Block a user