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>
+1 -1
View File
@@ -192,7 +192,7 @@ onMounted(async () => {
<p>{{ $t('profile.appPasswords.description') }}</p>
<br/>
<TableView :columns="columns" :model="passwords" :placeholder="$t('profile.appPasswords.noPasswordsPlaceholder')">
<TableView :columns="columns" :model="passwords" :hover="false" :placeholder="$t('profile.appPasswords.noPasswordsPlaceholder')">
<template #creationTime="slotProps">{{ prettyLongDate(slotProps.creationTime) }}</template>
<template #actions="slotProps">
<div class="table-actions">
+1 -1
View File
@@ -174,7 +174,7 @@ onMounted(async () => {
<div class="info-value">https://{{ adminFqdn }}/.well-known/openid-configuration</div>
</div>
<TableView :columns="columns" :model="clients" @row-click="onEdit">
<TableView :columns="columns" :model="clients" :hover="false" @row-click="onEdit">
<template #actions="slotProps">
<div class="table-actions">
<Button tool secondary outline small icon="fa-solid fa-pencil-alt" @click.stop="onEdit(slotProps)"></Button>