feat: manage caldav tokens [addition] #1307

Merged
konrad merged 24 commits from dpschen/frontend:feature/caldav-tokens into main 2022-04-02 15:51:44 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 7bdefd9a3e - Show all commits

View File

@ -29,12 +29,12 @@
<tr>
<th>{{ $t('misc.id') }}</th>
<th>{{ $t('misc.created') }}</th>
<th>{{ $t('misc.actions') }}</th>
<th class="has-text-right">{{ $t('misc.actions') }}</th>
</tr>
<tr v-for="tk in tokens">
<td>{{ tk.id }}</td>
<td>{{ formatDateShort(tk.created) }}</td>
<td>
<td class="has-text-right">
<x-button type="secondary" @click="deleteToken(tk)">
{{ $t('misc.delete') }}
</x-button>