From fcfa46c37a302b6028948a7ca2d9bc2b7954a9ed Mon Sep 17 00:00:00 2001 From: itsrubberduck Date: Fri, 20 Feb 2026 23:28:39 +0100 Subject: [PATCH] fix(pfd): use correct Nuxt auto-import component names (FlightlabPfd*) Nuxt auto-import prefixes component names based on directory path. Components in app/components/flightlab/pfd/ are registered as FlightlabPfd*, not Pfd*. Fixed in learn-pfd.vue and PfdContainer.vue. Co-Authored-By: Claude Opus 4.6 --- app/components/flightlab/pfd/PfdContainer.vue | 10 +++++----- app/pages/flightlab/medienstationen/learn-pfd.vue | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/components/flightlab/pfd/PfdContainer.vue b/app/components/flightlab/pfd/PfdContainer.vue index 6ceb272..460c593 100644 --- a/app/components/flightlab/pfd/PfdContainer.vue +++ b/app/components/flightlab/pfd/PfdContainer.vue @@ -80,7 +80,7 @@ const headingWidth = computed(() => attSize.value + tapeWidth.value * 2) top: `${speedTapePos.top}px`, }" > - attSize.value + tapeWidth.value * 2) top: `${attitudePos.top}px`, }" > - attSize.value + tapeWidth.value * 2) top: `${altTapePos.top}px`, }" > - attSize.value + tapeWidth.value * 2) top: `${vsPos.top}px`, }" > - attSize.value + tapeWidth.value * 2) top: `${headingPos.top}px`, }" > -
- -