diff --git a/package.json b/package.json index 304efac6b6..2ec7cf9be4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "misskey", - "version": "12.118.1-calc.6.7", + "version": "12.118.1-calc.6.8", "codename": "aqua", "repository": { "type": "git", diff --git a/packages/client/src/components/note-detailed.vue b/packages/client/src/components/note-detailed.vue index e44e9993dd..61d5f5a8d4 100644 --- a/packages/client/src/components/note-detailed.vue +++ b/packages/client/src/components/note-detailed.vue @@ -46,60 +46,58 @@ - -
-
-

- - -

-
-
- - - RN: -
- -
- {{ $t('translatedFrom', { x: translation.sourceLang }) }}: - -
+
+
+

+ + +

+
+
+ + + RN: +
+ +
+ {{ $t('translatedFrom', { x: translation.sourceLang }) }}: +
-
- -
- - -
- {{ appearNote.channel.name }} +
+ +
+ + +
-
-
- - - -
- - - - - - -
+ {{ appearNote.channel.name }}
- +
+
+ + + +
+ + + + + + +
+
@@ -141,6 +139,8 @@ import { i18n } from '@/i18n'; import { getNoteMenu } from '@/scripts/get-note-menu'; import { useNoteCapture } from '@/scripts/use-note-capture'; +const router = useRouter(); + const props = defineProps<{ note: misskey.entities.Note; pinned?: boolean; diff --git a/packages/client/src/components/note.vue b/packages/client/src/components/note.vue index f6692ded32..a55589fe4a 100644 --- a/packages/client/src/components/note.vue +++ b/packages/client/src/components/note.vue @@ -119,6 +119,7 @@ import MkVisibility from '@/components/visibility.vue'; import { pleaseLogin } from '@/scripts/please-login'; import { focusPrev, focusNext } from '@/scripts/focus'; import { checkWordMute } from '@/scripts/check-word-mute'; +import { useRouter } from '@/router'; import { userPage } from '@/filters/user'; import * as os from '@/os'; import { defaultStore, noteViewInterruptors } from '@/store';