Skip to content

Commit

Permalink
fix(vue): innerRef prop for DataSearch component
Browse files Browse the repository at this point in the history
  • Loading branch information
bietkul committed Sep 14, 2020
1 parent a122729 commit d4d02e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue/src/components/search/DataSearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const DataSearch = {
iconPosition: VueTypes.oneOf(['left', 'right']).def('left'),
includeFields: types.includeFields.def(['*']),
innerClass: types.style,
innerRef: types.func,
innerRef: types.string,
render: types.func,
renderQuerySuggestions: types.func,
parseSuggestion: types.func,
Expand Down Expand Up @@ -667,7 +667,7 @@ const DataSearch = {
showIcon={this.$props.showIcon}
showClear={this.$props.showClear}
iconPosition={this.$props.iconPosition}
innerRef={this.$props.innerRef}
ref={this.$props.innerRef}
class={getClassName(this.$props.innerClass, 'input')}
placeholder={this.$props.placeholder}
{...{
Expand Down

0 comments on commit d4d02e3

Please sign in to comment.