Skip to content

Commit

Permalink
Remove user-select from row a hrefs
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDaub committed Oct 14, 2024
1 parent 0f77292 commit 7a1ecc0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/components/row.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,6 @@ const row = (
? html`
<a
class="meta-link"
style="user-select: none;"
href="/stories/${slugify(
DOMPurify.sanitize(story.title),
)}?index=0x${story.index}"
Expand Down Expand Up @@ -485,7 +484,7 @@ const row = (
? `/${story.submitter.ens}`
: `/upvotes?address=${story.identity}`}"
class="meta-link"
style="user-select: none; ${recentJoiners &&
style="${recentJoiners &&
recentJoiners.includes(story.identity)
? `color: ${theme.color};`
: ""}"
Expand Down

0 comments on commit 7a1ecc0

Please sign in to comment.