Perf: Add Filer Icon

This commit is contained in:
zhaojisen 2025-01-03 18:43:21 +08:00 committed by ZhaoJiSen
parent feb3dbabc2
commit 153c29fbcc
2 changed files with 4 additions and 1 deletions

View File

@ -82,5 +82,6 @@ h3 {
.ellipsis {
text-align: center;
cursor: pointer;
}
</style>

View File

@ -106,7 +106,9 @@ export default {
computed: {
...mapGetters(['currentOrgIsRoot']),
iHasQuickFilter() {
const has = this.quickFilters && this.quickFilters.length > 0
const has =
(this.quickFilters && this.quickFilters.length > 0) ||
(this.quickSummary && this.quickSummary.length > 0)
return !!has
},
dataTable() {