From 7561e9900c1d99c05ba0ac9370e3dcb42d869e8e Mon Sep 17 00:00:00 2001
From: Remi <73385395+itsrubberduck@users.noreply.github.com>
Date: Mon, 22 Sep 2025 09:06:41 +0200
Subject: [PATCH] Display raw callsigns in learn view
---
app/pages/learn.vue | 37 +++++++++++++++++++++++++++++--------
1 file changed, 29 insertions(+), 8 deletions(-)
diff --git a/app/pages/learn.vue b/app/pages/learn.vue
index a952d42..0bb2153 100644
--- a/app/pages/learn.vue
+++ b/app/pages/learn.vue
@@ -180,7 +180,7 @@
Auto flight
-
{{ draftPlanScenario?.radioCall }}
+
{{ displayCallsign(draftPlanScenario?.radioCall, draftPlanScenario) }}
{{ draftPlanRoute }}
{{ draftPlanTagline }}
@@ -561,7 +561,7 @@
Take a beat to brief the flight deck before the next call.
@@ -789,7 +789,7 @@
Callsign
{{ scenario.callsign }}
-
{{ scenario.radioCall }}
+
Pronunciation: {{ scenario.radioCall }}
Airport
@@ -896,7 +896,7 @@
- {{ typeof segment.text === 'function' && scenario ? segment.text(scenario) : segment.text }}
+ {{ displayCallsign(typeof segment.text === 'function' && scenario ? segment.text(scenario) : segment.text) }}