diff --git a/web/frontend/src/Analysis.root.svelte b/web/frontend/src/Analysis.root.svelte index 1617ccd..861c0ec 100644 --- a/web/frontend/src/Analysis.root.svelte +++ b/web/frontend/src/Analysis.root.svelte @@ -20,6 +20,7 @@ Card, Table, Icon, + Tooltip } from "@sveltestrap/sveltestrap"; import { init, @@ -425,11 +426,18 @@ {#if groupSelection.key == "user"} - {te.id} {te?.name ? `(${te.name})` : ''}{te.id} + {#if te?.name} + {te.name} + {/if} {:else} - {tu.id} {tu?.name ? `(${tu.name})` : ''}{tu.id} + {#if tu?.name} + {tu.name} + {/if} {tu[topUserSelection.key]} {/each}