diff --git a/src/plugins/timelist/ExpandedViewItem.vue b/src/plugins/timelist/ExpandedViewItem.vue index 2280bf33ea7..531914458c7 100644 --- a/src/plugins/timelist/ExpandedViewItem.vue +++ b/src/plugins/timelist/ExpandedViewItem.vue @@ -162,7 +162,9 @@ export default { let value = this[itemProperty.key]; let formattedValue; if (itemProperty.format) { - formattedValue = itemProperty.format(value, undefined, itemProperty.key, this.openmct); + formattedValue = itemProperty.format(value, undefined, itemProperty.key, this.openmct, { + skipPrefix: true + }); } itemValue[itemProperty.key] = formattedValue; });