diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2025-02-26 15:51:28 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-26 06:51:28 +0000 |
| commit | 28b40691d5e26571d0cd52a98c60195534cc4407 (patch) | |
| tree | f418f5bd850dafd21352dd2e6cd6c13056a043d6 /packages/frontend/src/components/MkRemoteCaution.vue | |
| parent | New Crowdin updates (#15421) (diff) | |
| download | misskey-28b40691d5e26571d0cd52a98c60195534cc4407.tar.gz misskey-28b40691d5e26571d0cd52a98c60195534cc4407.tar.bz2 misskey-28b40691d5e26571d0cd52a98c60195534cc4407.zip | |
fix(frontend): リノート経由でノートの詳細情報を見るとき、クリップ一覧がappearNoteのものになるように (#15417)
* fix(frontend): リノート経由でノートの詳細情報を見るとき、クリップ一覧がappearNoteのものになるように
* Update Changelog
---------
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/components/MkRemoteCaution.vue')
| -rw-r--r-- | packages/frontend/src/components/MkRemoteCaution.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkRemoteCaution.vue b/packages/frontend/src/components/MkRemoteCaution.vue index a56a4b1671..2d3b7d107d 100644 --- a/packages/frontend/src/components/MkRemoteCaution.vue +++ b/packages/frontend/src/components/MkRemoteCaution.vue @@ -4,14 +4,14 @@ SPDX-License-Identifier: AGPL-3.0-only --> <template> -<div :class="$style.root"><i class="ti ti-alert-triangle" style="margin-right: 8px;"></i>{{ i18n.ts.remoteUserCaution }}<a :class="$style.link" :href="href" rel="nofollow noopener" target="_blank">{{ i18n.ts.showOnRemote }}</a></div> +<div :class="$style.root"><i class="ti ti-alert-triangle" style="margin-right: 8px;"></i>{{ i18n.ts.remoteUserCaution }}<a v-if="href" :class="$style.link" :href="href" rel="nofollow noopener" target="_blank">{{ i18n.ts.showOnRemote }}</a></div> </template> <script lang="ts" setup> import { i18n } from '@/i18n.js'; defineProps<{ - href: string; + href?: string; }>(); </script> |