mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 18:21:40 -04:00
fix(profile): add rel tag for ferdiverse link to make verification possible
Signed-off-by: Thorsten Daners <thorsten@daners.info>
This commit is contained in:
parent
97df391969
commit
30b30d09d5
1 changed files with 4 additions and 2 deletions
|
|
@ -159,7 +159,8 @@ function openStatusModal() {
|
|||
class="user-actions__primary"
|
||||
:href="primaryAction.target"
|
||||
:icon="primaryAction.icon"
|
||||
:target="primaryAction.id === 'phone' ? '_self' : '_blank'">
|
||||
:target="primaryAction.id === 'phone' ? '_self' : '_blank'"
|
||||
:rel="primaryAction.id === 'fediverse' ? 'me' : undefined">
|
||||
<template #icon>
|
||||
<!-- Fix for https://github.com/nextcloud-libraries/nextcloud-vue/issues/2315 -->
|
||||
<img :src="primaryAction.icon" alt="" class="user-actions__primary__icon">
|
||||
|
|
@ -172,7 +173,8 @@ function openStatusModal() {
|
|||
:key="action.id"
|
||||
:closeAfterClick="true"
|
||||
:href="action.target"
|
||||
:target="action.id === 'phone' ? '_self' : '_blank'">
|
||||
:target="action.id === 'phone' ? '_self' : '_blank'"
|
||||
:rel="primaryAction.id === 'fediverse' ? 'me' : undefined">
|
||||
<template #icon>
|
||||
<!-- Fix for https://github.com/nextcloud-libraries/nextcloud-vue/issues/2315 -->
|
||||
<img :src="action.icon" alt="" class="user-actions__other__icon">
|
||||
|
|
|
|||
Loading…
Reference in a new issue