Skip to content

Commit

Permalink
fix(select): the input parameter of the computedDisabledTooltipconten…
Browse files Browse the repository at this point in the history
…t lost props (#1740)

* fix(select): the input parameter of the computedDisabledTooltipcontent does not contain props

* fix(select): update version
  • Loading branch information
shenjunjian authored Jul 11, 2024
1 parent 0a14897 commit 0b3ea56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/renderless/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opentiny/vue-renderless",
"version": "3.17.3",
"version": "3.17.4",
"private": true,
"description": "An enterprise-class UI component library, support both Vue.js 2 and Vue.js 3, as well as PC and mobile.",
"author": "OpenTiny Team",
Expand Down
2 changes: 1 addition & 1 deletion packages/renderless/src/select/vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ const initApi = ({
computedShowNewOption: computedShowNewOption({ props, state }),
computedShowCopy: computedShowCopy({ props, state }),
computedOptionsAllDisabled: computedOptionsAllDisabled(state),
computedDisabledTooltipContent: computedDisabledTooltipContent(state),
computedDisabledTooltipContent: computedDisabledTooltipContent({ props, state }),

computedSelectDisabled: computedSelectDisabled({ props, parent }),
computedIsExpand: computedIsExpand({ props, state }),
Expand Down

0 comments on commit 0b3ea56

Please sign in to comment.