Describe the bug
const items = [ { label: "Choose department", value: null }, <----- here { label: "Engineering", value: "engineering" }, { label: "Design", value: "design" }, { label: "Marketing", value: "marketing" }, { label: "Sales", value: "sales" }, { label: "Customer Support", value: "support" }, { label: "Human Resources", value: "hr" }, { label: "Finance", value: "finance" }, { label: "Operations", value: "operations" }, ]
instead, the
{ label: "Choose department", value: null },
should be moved to
<SelectValue placeholder="Choose department"/>
reason: placeholders should not be a selectable option
plan: submit a change
Affected component/components
FieldSelect
How to reproduce
- Read https://ui.shadcn.com/docs/components/base/field#select
Codesandbox/StackBlitz link
No response
Logs
System Info
Before submitting
Describe the bug
const items = [ { label: "Choose department", value: null }, <----- here { label: "Engineering", value: "engineering" }, { label: "Design", value: "design" }, { label: "Marketing", value: "marketing" }, { label: "Sales", value: "sales" }, { label: "Customer Support", value: "support" }, { label: "Human Resources", value: "hr" }, { label: "Finance", value: "finance" }, { label: "Operations", value: "operations" }, ]instead, the
{ label: "Choose department", value: null },should be moved to
<SelectValue placeholder="Choose department"/>reason: placeholders should not be a selectable option
plan: submit a change
Affected component/components
FieldSelect
How to reproduce
Codesandbox/StackBlitz link
No response
Logs
System Info
doesn't matterBefore submitting