mirror of
https://github.com/nasa/openmct.git
synced 2025-06-01 23:20:50 +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;
|
: this.imageUrl;
|
||||||
},
|
},
|
||||||
getTime(datum) {
|
getTime(datum) {
|
||||||
return datum
|
let dateTimeStr = datum
|
||||||
? this.timeFormat.format(datum)
|
? this.timeFormat.format(datum)
|
||||||
: this.time;
|
: this.time;
|
||||||
|
|
||||||
|
// Replace ISO "T" with a space to allow wrapping
|
||||||
|
return dateTimeStr ? dateTimeStr.replace("T", " ") : "";
|
||||||
},
|
},
|
||||||
handleScroll() {
|
handleScroll() {
|
||||||
const thumbsWrapper = this.$refs.thumbsWrapper;
|
const thumbsWrapper = this.$refs.thumbsWrapper;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user