mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 06:38:17 +00:00
linting fixes
This commit is contained in:
@ -135,15 +135,18 @@ export default {
|
||||
computed: {
|
||||
showLabel() {
|
||||
let displayMode = this.item.displayMode;
|
||||
|
||||
return displayMode === 'all' || displayMode === 'label';
|
||||
},
|
||||
showValue() {
|
||||
let displayMode = this.item.displayMode;
|
||||
|
||||
return displayMode === 'all' || displayMode === 'value';
|
||||
},
|
||||
unit() {
|
||||
let value = this.item.value,
|
||||
unit = this.metadata.value(value).unit;
|
||||
let value = this.item.value;
|
||||
let unit = this.metadata.value(value).unit;
|
||||
|
||||
return unit;
|
||||
},
|
||||
styleObject() {
|
||||
|
Reference in New Issue
Block a user