Change to use tags removed fields instead of raw fields

This commit is contained in:
kPherox 2020-02-19 21:00:39 +09:00
parent da55b0d435
commit 064b59812c
No known key found for this signature in database
GPG key ID: C04751C2BFA2F62D

View file

@ -22,13 +22,13 @@
>
<!-- eslint-disable vue/no-v-html -->
<dt
:title="user.fields[index].name"
:title="user.fields_text[index].name"
class="user-profile-field-name"
@click.prevent="linkClicked"
v-html="field.name"
/>
<dd
:title="user.fields[index].value"
:title="user.fields_text[index].value"
class="user-profile-field-value"
@click.prevent="linkClicked"
v-html="field.value"