Skip to content

Commit

Permalink
fix(LobbySettings): convert to string before passing it to translation
Browse files Browse the repository at this point in the history
Signed-off-by: DorraJaouad <[email protected]>
  • Loading branch information
DorraJaouad committed May 7, 2024
1 parent 3648de7 commit c59a668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ConversationSettings/LobbySettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default {
return ''
}
const date = new Date(this.lobbyTimer)
return t('spreed', 'Start time: {date}', { date })
return t('spreed', 'Start time: {date}', { date: date.toString() })
},

getRelativeTime() {
Expand Down

0 comments on commit c59a668

Please sign in to comment.