prevent some defaults
This commit is contained in:
@@ -9,7 +9,10 @@
|
||||
|
||||
const profile = deriveProfile(value.pubkey)
|
||||
|
||||
const onClick = () => pushDrawer(ProfileDetail, {pubkey: value.pubkey})
|
||||
const onClick = (e: Event) => {
|
||||
e.stopPropagation()
|
||||
pushDrawer(ProfileDetail, {pubkey: value.pubkey})
|
||||
}
|
||||
</script>
|
||||
|
||||
<Button on:click={onClick} class="link-content">
|
||||
|
||||
Reference in New Issue
Block a user