Skip to content

Commit a5fc1dd

Browse files
authored
ui(editor): fix select dropdown border (#4632)
Fixes FER- ## Short description of the changes made - fixes border color of editable component dropdowns ## What was the motivation & context behind this PR? ## How has this PR been tested?
1 parent 1512bd2 commit a5fc1dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/fern-dashboard/src/components/editor/editor-component/EditorComponentPopover.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function SelectControlComponent({
178178
<SelectTrigger className="w-full">
179179
<SelectValue placeholder={`Select ${name}`} />
180180
</SelectTrigger>
181-
<SelectContent>
181+
<SelectContent className="border-border">
182182
{control.options.map((option: string) => (
183183
<SelectItem key={option} value={option}>
184184
{option}

0 commit comments

Comments
 (0)