chore: put action buttons right
This commit is contained in:
parent
8e5a318d4c
commit
7bdefd9a3e
1 changed files with 2 additions and 2 deletions
|
@ -29,12 +29,12 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ $t('misc.id') }}</th>
|
<th>{{ $t('misc.id') }}</th>
|
||||||
<th>{{ $t('misc.created') }}</th>
|
<th>{{ $t('misc.created') }}</th>
|
||||||
<th>{{ $t('misc.actions') }}</th>
|
<th class="has-text-right">{{ $t('misc.actions') }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr v-for="tk in tokens">
|
<tr v-for="tk in tokens">
|
||||||
<td>{{ tk.id }}</td>
|
<td>{{ tk.id }}</td>
|
||||||
<td>{{ formatDateShort(tk.created) }}</td>
|
<td>{{ formatDateShort(tk.created) }}</td>
|
||||||
<td>
|
<td class="has-text-right">
|
||||||
<x-button type="secondary" @click="deleteToken(tk)">
|
<x-button type="secondary" @click="deleteToken(tk)">
|
||||||
{{ $t('misc.delete') }}
|
{{ $t('misc.delete') }}
|
||||||
</x-button>
|
</x-button>
|
||||||
|
|
Loading…
Reference in a new issue