mirror of
https://github.com/OpenSquawk/OpenSquawk
synced 2026-05-15 03:25:40 +08:00
fix radiocall sign missing in mayday and panpan
This commit is contained in:
@@ -928,13 +928,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="scenario" class="scenario-quick">
|
||||
<div class="scenario-quick-main">
|
||||
<span class="scenario-quick-label">Callsign</span>
|
||||
<span class="scenario-quick-value">{{ displayCallsign(scenario.radioCall, scenario) }}</span>
|
||||
</div>
|
||||
<span class="scenario-quick-sub">Pronunciation: {{ scenario.radioCall }}</span>
|
||||
</div>
|
||||
<div class="console-grid">
|
||||
<div class="col">
|
||||
<div class="label">Briefing</div>
|
||||
|
||||
@@ -2323,7 +2323,7 @@ const decisionTreeLessons = [
|
||||
{ type: 'field', key: 'mayday-intent', width: 'lg' }
|
||||
],
|
||||
defaultFrequency: 'CTR',
|
||||
phrase: scenario => `Emergency scenario: ${scenario.emergencyProblem}. Declare MAYDAY with intentions ${scenario.emergencyIntent}.`,
|
||||
phrase: scenario => `${scenario.radioCall}, Emergency scenario: ${scenario.emergencyProblem}. Declare MAYDAY with intentions ${scenario.emergencyIntent}.`,
|
||||
info: scenario => [
|
||||
`Problem: ${scenario.emergencyProblem}`,
|
||||
`Intentions: ${scenario.emergencyIntent}`
|
||||
@@ -2366,7 +2366,7 @@ const decisionTreeLessons = [
|
||||
{ type: 'text', text: ', request priority.' }
|
||||
],
|
||||
defaultFrequency: 'CTR',
|
||||
phrase: scenario => `Urgent situation: ${scenario.emergencyProblem}. Declare PAN to obtain priority.`,
|
||||
phrase: scenario => `${scenario.radioCall}, Urgent situation: ${scenario.emergencyProblem}. Declare PAN to obtain priority.`,
|
||||
info: scenario => [
|
||||
`Problem: ${scenario.emergencyProblem}`,
|
||||
'Ensure ATC knows you require priority handling.'
|
||||
|
||||
Reference in New Issue
Block a user