Skip to content

Commit

Permalink
fix: link targets
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Aug 15, 2024
1 parent 484a7a5 commit c805f6a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/components/inbox/InboxDetailsUserIdentity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
)
a(
:href="profilePhoneUrl"
target="_blank"
rel="noopener noreferrer"
class="c-inbox-details-user-identity__action-link"
)
base-button(
Expand All @@ -56,7 +56,7 @@
)
a(
:href="profileEmailUrl"
target="_blank"
rel="noopener noreferrer"
class="c-inbox-details-user-identity__action-link"
)
base-button(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@

a.u-medium(
:href="identityUrl"
rel="noopener noreferrer"
target="_blank"
)
| {{ identityDomain }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
p.p-edit-profile-encryption-device-current__snapshot-security.u-medium
a(
:href="snapshot.security.target"
rel="noopener noreferrer"
target="_blank"
)
| {{ snapshot.security.label }}
Expand Down Expand Up @@ -85,10 +86,7 @@ export default {

security: {
label: `OMEMO v${OMEMO_VERSION}`,

target:
`https://xmpp.org/extensions/attic/` +
`xep-0384-${OMEMO_VERSION}.html`
target: "https://xmpp.org/extensions/xep-0384.html"
}
},

Expand Down

0 comments on commit c805f6a

Please sign in to comment.