From 7da04c6a095f5f88d336986db206126a0b5056ab Mon Sep 17 00:00:00 2001 From: kjs Date: Thu, 12 Mar 2026 15:43:06 +0900 Subject: [PATCH] feat: enhance V2InputConfigPanel with additional UI components - Added Separator and Checkbox components to the V2InputConfigPanel for improved layout and functionality. - This enhancement aims to provide better user interaction and organization within the input configuration settings. Made-with: Cursor --- frontend/components/v2/config-panels/V2InputConfigPanel.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/components/v2/config-panels/V2InputConfigPanel.tsx b/frontend/components/v2/config-panels/V2InputConfigPanel.tsx index 60cec12e..f4593e14 100644 --- a/frontend/components/v2/config-panels/V2InputConfigPanel.tsx +++ b/frontend/components/v2/config-panels/V2InputConfigPanel.tsx @@ -10,6 +10,8 @@ import { Label } from "@/components/ui/label"; import { Input } from "@/components/ui/input"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; import { Switch } from "@/components/ui/switch"; +import { Separator } from "@/components/ui/separator"; +import { Checkbox } from "@/components/ui/checkbox"; import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; import { Settings, ChevronDown, Loader2, Type, Hash, Lock, AlignLeft, SlidersHorizontal, Palette, ListOrdered } from "lucide-react"; import { cn } from "@/lib/utils";