updated else section

This commit is contained in:
10G Meow 2022-02-20 12:04:43 +02:00
parent d4351a3a43
commit aebe869a4e

View file

@ -27,7 +27,14 @@
<div v-else> <div v-else>
<i18n path="profile_info_popup.identity" tag="span"> <i18n path="profile_info_popup.identity" tag="span">
<template v-slot:displayName> <template v-slot:displayName>
<b>{{ displayName }}</b> <input
v-model="displayName"
@blur="
updateDisplayName($event.target.value);
editDisplayName = !editDisplayName;
"
@focus="editDisplayName = !editDisplayName"
/>
</template> </template>
</i18n> </i18n>
</div> </div>