diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index e4ac8ad9e1..3b1cc081ce 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -175,7 +175,7 @@ SPDX-License-Identifier: AGPL-3.0-only - {{ number(appearNote.repliesCount) }} + {{ Number(appearNote.repliesCount) }} @@ -192,7 +192,7 @@ SPDX-License-Identifier: AGPL-3.0-only @click.stop="defaultStore.state.renoteQuoteButtonSeparation && ((!defaultStore.state.renoteVisibilitySelection && !appearNote.channel) || (appearNote.channel && !appearNote.channel.allowRenoteToExternal) || appearNote.visibility === 'followers') ? renoteOnly() : renote()" > - {{ number(appearNote.renoteCount) }} + {{ Number(appearNote.renoteCount) }} @@ -206,7 +206,7 @@ SPDX-License-Identifier: AGPL-3.0-only - {{ number(appearNote.reactionCount) }} + {{ Number(appearNote.reactionCount) }} @@ -306,13 +306,13 @@ SPDX-License-Identifier: AGPL-3.0-only
{{ number(appearNote.repliesCount) }}
{{ Number(appearNote.repliesCount) }}
{{ number(appearNote.renoteCount) }}
{{ Number(appearNote.renoteCount) }}
{{ number(appearNote.reactionCount) }}
{{ Number(appearNote.reactionCount) }}