Skip to content

Commit

Permalink
fix(ld-select): apply props explicitly to make it work in vue
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdiakur committed Aug 26, 2021
1 parent 460de73 commit a6fca8f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/liquid/components/ld-option/ld-option.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,13 @@ export class LdOption {

render() {
return (
<Host class="ld-option" role="presentation">
<Host
class="ld-option"
role="presentation"
selected={this.selected}
disabled={this.disabled}
value={this.value}
>
<slot></slot>
</Host>
)
Expand Down

0 comments on commit a6fca8f

Please sign in to comment.