mirror of
https://github.com/nasa/openmct.git
synced 2025-02-21 17:57:04 +00:00
slowing adding gui
This commit is contained in:
parent
55c8609953
commit
a94c752616
@ -94,7 +94,7 @@ export default class CompsManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getExpression() {
|
getExpression() {
|
||||||
return 'a + b';
|
return 'a * b ';
|
||||||
}
|
}
|
||||||
|
|
||||||
#addTelemetryObject = async (telemetryObject) => {
|
#addTelemetryObject = async (telemetryObject) => {
|
||||||
|
@ -21,7 +21,19 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="u-contents">This is the comps view</div>
|
<div class="c-cs" aria-label="Derived Telemetry">
|
||||||
|
<section class="c-cs__current-output c-section">
|
||||||
|
<div class="c-cs__content c-cs__current-output-value">
|
||||||
|
<span class="c-cs__current-output-value__label">Current Output</span>
|
||||||
|
<span class="c-cs__current-output-value__value" aria-label="Current Output Value">
|
||||||
|
<template v-if="currentCompOutput">
|
||||||
|
{{ currentCompOutput }}
|
||||||
|
</template>
|
||||||
|
<template v-else> --- </template>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user