Skip to content

SelectValue placeholder isn't working #292

@pierry01

Description

@pierry01
SelectTrigger(id: "SELECT_TRIGGER_ID") do
  SelectValue(id: "SELECT_VALUE_ID", placeholder: "PLACEHOLDER") do
    nil
  end
end

Image

to avoid this, it is necessary to use nil || "STRING"

SelectTrigger(id: "SELECT_TRIGGER_ID") do
  SelectValue(id: "SELECT_VALUE_ID") do
    nil || "PLACEHOLDER"
  end
end

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions