add no match placeholder for apps

This commit is contained in:
Girish Ramakrishnan
2025-10-01 03:02:50 +02:00
parent 0b3d3ceb48
commit 33ced1c16e
2 changed files with 6 additions and 2 deletions

View File

@@ -342,7 +342,7 @@ onDeactivated(() => {
</TableView>
</div>
<div class="empty-placeholder" v-if="apps.length === 0">
<div v-if="apps.length === 0" class="empty-placeholder">
<!-- admins or not-->
<div v-if="profile.isAtLeastAdmin">
<h4>{{ $t('apps.noApps.title') }}</h4>
@@ -353,6 +353,9 @@ onDeactivated(() => {
<h5>{{ $t('apps.noAccess.description') }}</h5>
</div>
</div>
<div v-else-if="filteredApps.length === 0" class="empty-placeholder">
{{ $t('apps.noMatchesPlaceholder') }}
</div>
</div>
</div>
</template>