Skip to content

Commit

Permalink
fix(table-action): divider not work as expected
Browse files Browse the repository at this point in the history
修复tableAction中的divider未按预期工作
  • Loading branch information
mynetfan committed Sep 11, 2021
1 parent b3307fe commit 7593ef6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/components/Table/src/components/TableAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
<Divider
type="vertical"
class="action-divider"
v-if="
divider &&
index < getActions.length - (dropDownActions ? 0 : 1) &&
getDropdownList.length > 0
"
v-if="divider && index < getActions.length - 1"
/>
</template>
<Dropdown
Expand Down

0 comments on commit 7593ef6

Please sign in to comment.