fix(webapp): fix style of admin api keys (#9483)

This commit is contained in:
Ulf Gebhardt 2026-04-03 17:33:39 +02:00 committed by GitHub
parent ceb46263e4
commit 9fa22ee3eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,10 +1,8 @@
<template> <template>
<div class="admin-api-keys"> <os-card class="admin-api-keys">
<os-card> <h2 class="title">{{ $t('admin.api-keys.name') }}</h2>
<h2 class="title">{{ $t('admin.api-keys.name') }}</h2>
</os-card>
<os-card v-if="apiKeyUsers && apiKeyUsers.length"> <template v-if="apiKeyUsers && apiKeyUsers.length">
<div class="ds-table-wrap table-no-clip"> <div class="ds-table-wrap table-no-clip">
<table class="ds-table ds-table-condensed ds-table-bordered"> <table class="ds-table ds-table-condensed ds-table-bordered">
<thead> <thead>
@ -182,13 +180,11 @@
</table> </table>
</div> </div>
<pagination-buttons :hasNext="hasNext" :hasPrevious="hasPrevious" @next="next" @back="back" /> <pagination-buttons :hasNext="hasNext" :hasPrevious="hasPrevious" @next="next" @back="back" />
</os-card> </template>
<os-card v-else> <div v-else class="ds-placeholder">{{ $t('admin.api-keys.empty') }}</div>
<div class="ds-placeholder">{{ $t('admin.api-keys.empty') }}</div>
</os-card>
<confirm-modal v-if="showModal" :modalData="modalData" @close="showModal = false" /> <confirm-modal v-if="showModal" :modalData="modalData" @close="showModal = false" />
</div> </os-card>
</template> </template>
<script> <script>