Skip to content

Commit

Permalink
Merge pull request #267 from appwrite/fix-remove-wrong-tooltip-button
Browse files Browse the repository at this point in the history
fix: remove wrong tootip from button
  • Loading branch information
TorstenDittmann committed Feb 9, 2023
2 parents 7fc2853 + 2855835 commit 4084eb4
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

1 comment on commit 4084eb4

@vercel
Copy link

@vercel vercel bot commented on 4084eb4 Feb 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.