diff --git a/src/components/Datetime.vue b/src/components/Datetime.vue index 0d4e182cd..7e64b85fe 100644 --- a/src/components/Datetime.vue +++ b/src/components/Datetime.vue @@ -15,6 +15,10 @@ export default { type: Boolean, default: false, }, + use12HourTimeFormat: { + type: Boolean, + default: false + }, }, computed: { @@ -22,7 +26,7 @@ export default { if (this.dateOnly) { return this.$root.date(this.value); } else { - return this.$root.datetime(this.value); + return this.$root.datetime(this.value, this.use12HourTimeFormat); } }, }, diff --git a/src/components/PingChart.vue b/src/components/PingChart.vue index 9502eb84c..41a7d5c54 100644 --- a/src/components/PingChart.vue +++ b/src/components/PingChart.vue @@ -1,6 +1,10 @@