mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 14:47:01 +00:00
fix: lint formatting — attribute ordering, line breaks, whitespace
This commit is contained in:
@@ -140,18 +140,22 @@ const handleEdit = (integration: IntegrationType) => {
|
||||
<h3 class="text-sm font-weight-700 text-nc-content-gray-subtle mb-0">
|
||||
{{ t('general.activeConnections') }}
|
||||
</h3>
|
||||
<NcBadge v-if="filteredTotalCount" :border="false" class="bg-nc-bg-brand-inverted text-nc-content-gray-subtle2 text-xs min-w-5 !h-5 flex justify-center">
|
||||
<NcBadge
|
||||
v-if="filteredTotalCount"
|
||||
:border="false"
|
||||
class="bg-nc-bg-brand-inverted text-nc-content-gray-subtle2 text-xs min-w-5 !h-5 flex justify-center"
|
||||
>
|
||||
{{ filteredTotalCount }}
|
||||
</NcBadge>
|
||||
</div>
|
||||
|
||||
<NcButton
|
||||
v-if="filteredTotalCount > 0"
|
||||
v-e="['c:integration:view-all-connections']"
|
||||
type="link"
|
||||
size="small"
|
||||
class="!text-nc-content-brand !p-0 !h-auto !min-h-0"
|
||||
inner-class="hover:underline"
|
||||
v-e="['c:integration:view-all-connections']"
|
||||
@click="emits('view-all')"
|
||||
>
|
||||
{{ t('general.viewAllConnections') }}
|
||||
@@ -172,7 +176,12 @@ const handleEdit = (integration: IntegrationType) => {
|
||||
/>
|
||||
|
||||
<!-- Overflow card -->
|
||||
<div v-if="overflowCount > 0" v-e="['c:integration:view-all-connections']" class="nc-connection-overflow-card" @click="emits('view-all')">
|
||||
<div
|
||||
v-if="overflowCount > 0"
|
||||
v-e="['c:integration:view-all-connections']"
|
||||
class="nc-connection-overflow-card"
|
||||
@click="emits('view-all')"
|
||||
>
|
||||
<div class="text-sm font-semibold text-nc-content-gray">+{{ overflowCount }} {{ t('general.more') }}</div>
|
||||
<div class="text-xs text-nc-content-gray-subtle2">
|
||||
{{ t('general.viewAllConnections') }}
|
||||
|
||||
Reference in New Issue
Block a user