diff --git a/client/src/components/Altitude.vue b/client/src/components/Altitude.vue index 1d7bf5b..b3d60f4 100644 --- a/client/src/components/Altitude.vue +++ b/client/src/components/Altitude.vue @@ -5,7 +5,9 @@ const props = withDefaults(defineProps<{ history: any[] currentAltitude: number | null color?: string, - unit: string + unit: string, + startTime?: string, + endTime?: string, }>(), { color: '#0f0' }); @@ -153,11 +155,11 @@ const graph = computed(() => { /> - {{ graph.startTime }} + {{ startTime || graph.startTime }} - {{ graph.endTime }} + {{ endTime || graph.endTime }} diff --git a/client/src/components/WeatherBalloon.vue b/client/src/components/WeatherBalloon.vue index afa97b0..629a010 100644 --- a/client/src/components/WeatherBalloon.vue +++ b/client/src/components/WeatherBalloon.vue @@ -1,4 +1,5 @@