Skip to content

Commit 896d77a

Browse files
charlesh88davetsay
andauthored
Remove "+" and "-" from formattedItem.countdown in ExpandedViewItem.vue (#8172)
Co-authored-by: David Tsay <[email protected]>
1 parent 2494e2f commit 896d77a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/plugins/timelist/ExpandedViewItem.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ export default {
162162
let value = this[itemProperty.key];
163163
let formattedValue;
164164
if (itemProperty.format) {
165-
formattedValue = itemProperty.format(value, undefined, itemProperty.key, this.openmct);
165+
formattedValue = itemProperty.format(value, undefined, itemProperty.key, this.openmct, {
166+
skipPrefix: true
167+
});
166168
}
167169
itemValue[itemProperty.key] = formattedValue;
168170
});

0 commit comments

Comments
 (0)