diff --git a/client/src/components/WeatherBalloon.vue b/client/src/components/WeatherBalloon.vue index 2f7d412..89fbb25 100644 --- a/client/src/components/WeatherBalloon.vue +++ b/client/src/components/WeatherBalloon.vue @@ -96,8 +96,7 @@ const speedVal = computed(() => { const climbVal = computed(() => { if (latest.value?.climb == null) return null - - const v = vertical.value.convert(Number(latest.value.vertical_speed)) + const v = vertical.value.convert(Number(latest.value.climb)) return v >= 0 ? `+${v}` : String(v) }) @@ -424,7 +423,7 @@ onUnmounted(() => {
Type: {{ latest?.type || 'Unknown' }} - Freq: {{ latest?.frequency?.toFixed(2) || '—' }} MHz + Freq: {{ latest?.freqMhz?.toFixed(2) || '—' }} MHz