Disable table row hovering

This commit is contained in:
Johannes Zellner
2025-01-21 19:14:23 +01:00
parent dfcaacee80
commit 0f5a4c10ef
6 changed files with 38 additions and 12 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ onMounted(async () => {
<p v-html="$t('profile.apiTokens.description', { apiDocsLink: 'https://docs.cloudron.io/api.html' })"></p>
<br/>
<TableView :columns="columns" :model="apiTokens">
<TableView :columns="columns" :model="apiTokens" :hover="false">
<template #lastUsedTime="slotProps">
<span v-if="slotProps.lastUsedTime">{{ prettyLongDate(slotProps.lastUsedTime) }}</span>
<span v-else>{{ $t('profile.apiTokens.neverUsed') }}</span>