Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
201d4f1
feat: add contributors popup card
userquin Feb 23, 2026
ef187b0
Merge branch 'main' into userquin/feat-add-contributors-popup-card
userquin Feb 23, 2026
373656a
chore: cleanup console.log
userquin Feb 23, 2026
c26c191
chore: apply coderabbitai suggestion for website url
userquin Feb 23, 2026
3764ea9
chore: apply coderabbitai suggestion for role
userquin Feb 23, 2026
85439ec
chore: apply coderabbitai suggestion for noExternalIcon jsdoc
userquin Feb 23, 2026
9769b80
chore: remove `about.team.governance` from json file and add `about.t…
userquin Feb 23, 2026
47c9cac
[autofix.ci] apply automated fixes
autofix-ci[bot] Feb 23, 2026
c9d5d70
chore: fix `http:` without `//`
userquin Feb 23, 2026
f70e50f
Merge remote-tracking branch 'origin/userquin/feat-add-contributors-p…
userquin Feb 23, 2026
138b1c3
chore: apply coderabbitai suggestion for useInfo
userquin Feb 23, 2026
5d34b0e
chore: apply coderabbitai suggestion for timers cleanup
userquin Feb 23, 2026
5e034fe
chore: fix positionPopover called fire-and-forget and openTimer not r…
userquin Feb 23, 2026
950ad13
chore: fix showPopover at positionPopover error
userquin Feb 23, 2026
93d10b5
chore: add long aria label link description
userquin Feb 23, 2026
38596e2
chore: adjust popup margins and gaps
userquin Feb 23, 2026
08145a0
chore: use sanitize-html at endpoint
userquin Feb 23, 2026
b55b56a
chore: fix popup position on RTL
userquin Feb 23, 2026
776c173
chore: use v-else-if fro contributors
userquin Feb 23, 2026
55db682
chore: use aria-hidden with uno icons
userquin Feb 23, 2026
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
11 changes: 9 additions & 2 deletions app/components/Link/Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ const props = withDefaults(

/** should only be used for links where the context makes it very clear they are clickable. Don't just use this, because you don't like underlines. */
noUnderline?: boolean

/**
* When `true`, suppresses the external-link icon even for external `to` URLs.
*
* @default false
*/
noExternalIcon?: boolean
}>(),
{ variant: 'link', size: 'medium' },
{ variant: 'link', size: 'medium', noUnderline: false, noExternalIcon: false },
)

const isLinkExternal = computed(
Expand Down Expand Up @@ -99,7 +106,7 @@ const isButtonMedium = computed(() => props.size === 'medium' && !isLink.value)
<slot />
<!-- automatically show icon indicating external link -->
<span
v-if="isLinkExternal && !classicon"
v-if="isLinkExternal && !noExternalIcon && !classicon"
class="i-lucide:external-link rtl-flip size-[1em] opacity-50"
aria-hidden="true"
/>
Expand Down
Loading
Loading