fix: remove wrong tootip from button

This commit is contained in:
Arman
2023-02-09 14:01:21 +01:00
parent 7fc2853862
commit 28558358df
@@ -67,17 +67,18 @@
<TableCellText title="Session">{session.clientType}</TableCellText>
<TableCellText title="Location">{session.countryName}</TableCellText>
<TableCellText title="IP">{session.ip}</TableCellText>
<TableCellText title="">
<button
class="button is-only-icon is-text"
aria-label="Delete item"
<TableCell>
<Button
text
round
ariaLabel="Delete item"
on:click={() => {
selectedSessionId = session.$id;
showDelete = true;
}}>
<span class="icon-trash" aria-hidden="true" />
</button>
</TableCellText>
</Button>
</TableCell>
</TableRow>
{/each}
</TableBody>