From a755e45697f5d718c638f65ca5584477551d860f Mon Sep 17 00:00:00 2001 From: nocnico Date: Sat, 19 Jul 2025 00:29:39 +0200 Subject: [PATCH] =?UTF-8?q?Fehler=20Melden=20Knopf=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/dispatch/app/(app)/dispatch/page.tsx | 4 ++++ apps/dispatch/app/(app)/pilot/page.tsx | 4 ++++ apps/dispatch/app/_components/left/BugReport.tsx | 16 ++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 apps/dispatch/app/_components/left/BugReport.tsx diff --git a/apps/dispatch/app/(app)/dispatch/page.tsx b/apps/dispatch/app/(app)/dispatch/page.tsx index a97702f8..648945fc 100644 --- a/apps/dispatch/app/(app)/dispatch/page.tsx +++ b/apps/dispatch/app/(app)/dispatch/page.tsx @@ -7,6 +7,7 @@ import dynamic from "next/dynamic"; import { Chat } from "../../_components/left/Chat"; import { Report } from "../../_components/left/Report"; import { SituationBoard } from "_components/left/SituationBoard"; +import { BugReport } from "_components/left/BugReport"; const Map = dynamic(() => import("../../_components/map/Map"), { ssr: false }); @@ -22,6 +23,9 @@ const DispatchPage = () => {
+
+ +
diff --git a/apps/dispatch/app/(app)/pilot/page.tsx b/apps/dispatch/app/(app)/pilot/page.tsx index 05e3bdb9..015ec84e 100644 --- a/apps/dispatch/app/(app)/pilot/page.tsx +++ b/apps/dispatch/app/(app)/pilot/page.tsx @@ -12,6 +12,7 @@ import { getConnectedAircraftsAPI } from "_querys/aircrafts"; import { checkSimulatorConnected } from "@repo/shared-components"; import { SimConnectionAlert } from "(app)/pilot/_components/SimConnectionAlert"; import { SettingsBoard } from "_components/left/SettingsBoard"; +import { BugReport } from "_components/left/BugReport"; const Map = dynamic(() => import("_components/map/Map"), { ssr: false, @@ -37,6 +38,9 @@ const PilotPage = () => {
+
+ +
diff --git a/apps/dispatch/app/_components/left/BugReport.tsx b/apps/dispatch/app/_components/left/BugReport.tsx new file mode 100644 index 00000000..7f207153 --- /dev/null +++ b/apps/dispatch/app/_components/left/BugReport.tsx @@ -0,0 +1,16 @@ +import { Bug } from "lucide-react"; + +export const BugReport = () => { + return ( +
+ + + +
+ ); +};