fix: add background color for empty client list table

This commit is contained in:
Lykin 2024-02-27 17:20:18 +08:00
parent bb4ab109e7
commit f8ef25a323
1 changed files with 5 additions and 1 deletions

View File

@ -652,7 +652,11 @@ const clientTableColumns = computed(() => {
:label="$t('status.connected_clients')"
:value="get(serverInfo, 'Clients.connected_clients', '0')">
<template #suffix>
<n-tooltip trigger="click" width="70vw" @update-show="onShowClients">
<n-tooltip
:content-style="{ backgroundColor: themeVars.tableColor }"
trigger="click"
width="70vw"
@update-show="onShowClients">
<template #trigger>
<n-button :bordered="false" size="small">&LowerRightArrow;</n-button>
</template>