diff --git a/src/routes/graphs/tab/+page.svelte b/src/routes/graphs/tab/+page.svelte index c8e5fc8..d8a3e3d 100644 --- a/src/routes/graphs/tab/+page.svelte +++ b/src/routes/graphs/tab/+page.svelte @@ -1,47 +1,44 @@ @@ -64,4 +60,8 @@

Example Tab

-

{selectedGameGroups.length > 1 ? "Groups" : "Group"} {selectedGameGroups.map((selection) => gameGroups.get(selection)?.name).join(", ")} {selectedGameGroups.length > 1 ? "are" : "is"} selected

+

+ {selectedGameGroups.length > 1 ? 'Groups' : 'Group'} + {selectedGameGroups.map((selection) => gameGroups.get(selection)?.name).join(', ')} + {selectedGameGroups.length > 1 ? 'are' : 'is'} selected +