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 { .ellipsis {
text-align: center; text-align: center;
cursor: pointer;
} }
</style> </style>

View File

@ -106,7 +106,9 @@ export default {
computed: { computed: {
...mapGetters(['currentOrgIsRoot']), ...mapGetters(['currentOrgIsRoot']),
iHasQuickFilter() { 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 return !!has
}, },
dataTable() { dataTable() {