Skip to content

Commit

Permalink
Fixed: Resolved the issue of duplicate requests by implementing a che…
Browse files Browse the repository at this point in the history
…ck for the value of zero.
  • Loading branch information
ZhaoJiSen committed Jan 8, 2025
1 parent a7378d2 commit b42dfeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Table/ListTable/TableAction/QuickFilter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default {
},
methods: {
async getCount(item) {
if (item.count) {
if (item.count || item.count === 0) {
return item.count
}
if (!item.filter) {
Expand Down

0 comments on commit b42dfeb

Please sign in to comment.