mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
currentUser previousDisplayNames on userDialog
This commit is contained in:
@@ -31,10 +31,13 @@
|
||||
<template #content>
|
||||
<span>{{ t('dialog.user.previous_display_names') }}</span>
|
||||
<div
|
||||
v-for="displayName in userDialog.previousDisplayNames"
|
||||
:key="displayName"
|
||||
v-for="data in userDialog.previousDisplayNames"
|
||||
:key="data.displayName"
|
||||
placement="top">
|
||||
<span v-text="displayName"></span>
|
||||
<span>{{ data.displayName }}</span>
|
||||
<span v-if="data.updated_at">
|
||||
― {{ formatDateFilter(data.updated_at, 'long') }}</span
|
||||
>
|
||||
</div>
|
||||
</template>
|
||||
<el-icon><CaretBottom /></el-icon>
|
||||
|
||||
Reference in New Issue
Block a user