diff --git a/src/plugins/imagery/components/ImageryViewLayout.vue b/src/plugins/imagery/components/ImageryViewLayout.vue index 4e8aed2e70..1e81f70d1f 100644 --- a/src/plugins/imagery/components/ImageryViewLayout.vue +++ b/src/plugins/imagery/components/ImageryViewLayout.vue @@ -153,9 +153,12 @@ export default { : this.imageUrl; }, getTime(datum) { - return datum + let dateTimeStr = datum ? this.timeFormat.format(datum) : this.time; + + // Replace ISO "T" with a space to allow wrapping + return dateTimeStr ? dateTimeStr.replace("T", " ") : ""; }, handleScroll() { const thumbsWrapper = this.$refs.thumbsWrapper;