We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181a802 commit d0d9ccaCopy full SHA for d0d9cca
packages/yew-bootstrap/src/component/searchable_select/mod.rs
@@ -407,7 +407,7 @@ pub fn SearchableSelect(props: &SearchableSelectProps) -> Html {
407
id={ props.id.clone() }
408
type="text"
409
class={ classes!("form-control", validation_class) }
410
- value={props.title.clone()}
+ value={ props.title.clone().unwrap_or("".into()) }
411
placeholder={props.placeholder.clone()}
412
readonly={true}
413
/>
0 commit comments