diff --git a/src/components/Form/FormGroupHeader/index.vue b/src/components/Form/FormGroupHeader/index.vue index 225959d0f..b211e3225 100644 --- a/src/components/Form/FormGroupHeader/index.vue +++ b/src/components/Form/FormGroupHeader/index.vue @@ -82,5 +82,6 @@ h3 { .ellipsis { text-align: center; + cursor: pointer; } diff --git a/src/components/Table/ListTable/index.vue b/src/components/Table/ListTable/index.vue index 4dde49f44..6fddb7414 100644 --- a/src/components/Table/ListTable/index.vue +++ b/src/components/Table/ListTable/index.vue @@ -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() { diff --git a/src/views/accounts/AccountChangeSecret/AccountChangeSecretCreateUpdate.vue b/src/views/accounts/AccountChangeSecret/AccountChangeSecretCreateUpdate.vue index be94114e2..838eb48ef 100644 --- a/src/views/accounts/AccountChangeSecret/AccountChangeSecretCreateUpdate.vue +++ b/src/views/accounts/AccountChangeSecret/AccountChangeSecretCreateUpdate.vue @@ -43,7 +43,7 @@ export default { [this.$t('Automations'), ['params']], [this.$t('Periodic'), ['is_periodic', 'interval', 'crontab']], [this.$t('Notification'), ['recipients']], - [this.$t('Other'), ['is_active', 'comment']] + [this.$t('Other'), ['check_conn_after_change', 'is_active', 'comment']] ], fieldsMeta: { ...getChangeSecretFields(), diff --git a/src/views/accounts/AccountPush/AccountPushCreateUpdate.vue b/src/views/accounts/AccountPush/AccountPushCreateUpdate.vue index 0f144c782..ccd412d46 100644 --- a/src/views/accounts/AccountPush/AccountPushCreateUpdate.vue +++ b/src/views/accounts/AccountPush/AccountPushCreateUpdate.vue @@ -45,7 +45,7 @@ export default { this.$t('Automations'), ['params'] ], [this.$t('Periodic'), ['is_periodic', 'interval', 'crontab']], - [this.$t('Other'), ['is_active', 'comment']] + [this.$t('Other'), ['check_conn_after_change', 'is_active', 'comment']] ], fieldsMeta: { ...periodicMeta,