From a563a3c34173f95a47daa873dfc3b6fa532086d5 Mon Sep 17 00:00:00 2001 From: Toba Ojo Date: Mon, 8 Dec 2025 12:50:14 +0000 Subject: [PATCH] - need endpoint for include and exclude --- src/features/output/components/OSDFields.tsx | 1 - src/features/output/components/OSDOptionsCard.tsx | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/features/output/components/OSDFields.tsx b/src/features/output/components/OSDFields.tsx index 56e2954..c79a704 100644 --- a/src/features/output/components/OSDFields.tsx +++ b/src/features/output/components/OSDFields.tsx @@ -29,7 +29,6 @@ const OSDFields = ({ isOSDLoading }: OSDFieldsProps) => {
-

OSD Options

{includeKeys.map((key) => ( diff --git a/src/features/output/components/OSDOptionsCard.tsx b/src/features/output/components/OSDOptionsCard.tsx index 5eb0c61..dc0f924 100644 --- a/src/features/output/components/OSDOptionsCard.tsx +++ b/src/features/output/components/OSDOptionsCard.tsx @@ -1,6 +1,8 @@ import Card from "../../../ui/Card"; import CardHeader from "../../../ui/CardHeader"; import OSDFields from "./OSDFields"; +import { Tab, TabList, TabPanel, Tabs } from "react-tabs"; +import "react-tabs/style/react-tabs.css"; type OSDOptionsCardProps = { isOSDLoading: boolean; @@ -10,7 +12,18 @@ const OSDOptionsCard = ({ isOSDLoading }: OSDOptionsCardProps) => { return ( - + + + OSD Settings + payload Settings + + + + + +
payload settings
+
+
); };