mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
Format ISO datetime to allow text wrapping in Imagery view thumbs (#3415)
Format ISO datetime to allow text wrapping
This commit is contained in:
parent
baa8078d23
commit
257a8e2e2d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user