Skip to content

Commit

Permalink
fix: expandIcon slot of BasicTable component is invalid (#975)
Browse files Browse the repository at this point in the history
  • Loading branch information
weilence authored Jul 25, 2021
1 parent fe4eae3 commit 98c206d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table/src/BasicTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
// ...(dataSource.length === 0 ? { getPopupContainer: () => document.body } : {}),
...attrs,
customRow,
expandIcon: expandIcon(),
expandIcon: slots.expandIcon ? null : expandIcon(),
...unref(getProps),
...unref(getHeaderProps),
scroll: unref(getScrollRef),
Expand Down

0 comments on commit 98c206d

Please sign in to comment.