chore: Only show hours and minutes in first login timestamp

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2025-01-21 13:58:44 -08:00
parent 9b2856affc
commit a967968126

View file

@ -38,7 +38,13 @@ export default {
},
},
setup(props) {
const { formattedFullTime } = useFormatDateTime(props.user.firstLoginTimestamp * 1000, { relativeTime: false })
const { formattedFullTime } = useFormatDateTime(props.user.firstLoginTimestamp * 1000, {
relativeTime: false,
format: {
timeStyle: 'short',
dateStyle: 'short',
},
})
return {
formattedFullTime,
}