Skip to content

Commit

Permalink
fix(dropdown-select-item): reflect value prop, fixes #1194 (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arturo Castillo Delgado authored and Maomao Meyer-Zhang committed Sep 12, 2022
1 parent 6737f8e commit 9456a56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class DropdownSelectItem {
@Element() hostElement: HTMLElement;
@Prop() selected?: boolean;
@Prop() focused?: boolean;
@Prop() value?: any;
@Prop({ reflect: true }) value?: any;

render() {
return (
Expand Down

0 comments on commit 9456a56

Please sign in to comment.