Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/WalletConnectButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
<Item on:SMUI:action={connectWithLedgerWallet}>
<Text>
<div class="item">
<img class="logo" src={ledgerWalletLogo} alt="partisia wallet logo" />
<img class="logo" src={ledgerWalletLogo} alt="ledger wallet logo" />
<span>Ledger</span>
</div>
</Text>
Expand Down
14 changes: 10 additions & 4 deletions src/routes/profile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

if (trimmedDomain.startsWith(trimmedSearch) || trimmedDomain.includes(trimmedSearch))
return true;
else false;
else return false;
}
</script>

Expand All @@ -59,9 +59,15 @@
>
<svelte:fragment slot="trailingIcon">
<div class="close-icon">
<IconButton on:click={cleanSearch} aria-label="cancel">
<Icon icon="cancel" />
</IconButton>
{#if search.length > 0}
<IconButton on:click={cleanSearch} aria-label="clear search">
<Icon icon="cancel" />
</IconButton>
{:else}
<IconButton aria-label="search" disabled>
<Icon icon="search" />
</IconButton>
{/if}
</div>
</svelte:fragment>
</Textfield>
Expand Down