mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
fix(webapp): fix style of admin api keys (#9483)
This commit is contained in:
parent
ceb46263e4
commit
9fa22ee3eb
@ -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>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user