diff options
| author | misskey-release-bot[bot] <157398866+misskey-release-bot[bot]@users.noreply.github.com> | 2025-06-16 02:33:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-16 02:33:18 +0000 |
| commit | 830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd (patch) | |
| tree | b9ac1c4efb202a62fe34608fb3f42fd73297774b /packages/frontend/src/components/MkTutorialDialog.Note.vue | |
| parent | Merge pull request #16134 from misskey-dev/develop (diff) | |
| parent | Release: 2025.6.1 (diff) | |
| download | misskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.tar.gz misskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.tar.bz2 misskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.zip | |
Merge pull request #16152 from misskey-dev/develop
Release: 2025.6.1
Diffstat (limited to 'packages/frontend/src/components/MkTutorialDialog.Note.vue')
| -rw-r--r-- | packages/frontend/src/components/MkTutorialDialog.Note.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkTutorialDialog.Note.vue b/packages/frontend/src/components/MkTutorialDialog.Note.vue index 95f53e7635..b77e67e9c6 100644 --- a/packages/frontend/src/components/MkTutorialDialog.Note.vue +++ b/packages/frontend/src/components/MkTutorialDialog.Note.vue @@ -29,6 +29,7 @@ import { i18n } from '@/i18n.js'; import { globalEvents } from '@/events.js'; import { $i } from '@/i.js'; import MkNote from '@/components/MkNote.vue'; +import { genId } from '@/utility/id.js'; const props = defineProps<{ phase: 'aboutNote' | 'howToReact'; @@ -83,7 +84,7 @@ function doNotification(emoji: string): void { if (!$i || !emoji) return; const notification: Misskey.entities.Notification = { - id: Math.random().toString(), + id: genId(), createdAt: new Date().toUTCString(), type: 'reaction', reaction: emoji, |