aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_profile/user_profile.vue
diff options
context:
space:
mode:
authorkPherox <admin@mail.kr-kp.com>2020-02-19 21:00:39 +0900
committerkPherox <admin@mail.kr-kp.com>2020-02-19 21:00:50 +0900
commit064b59812c715d60526727d42c124375a2bc89d5 (patch)
tree9e9220c1694e9978d797428e7598591097195936 /src/components/user_profile/user_profile.vue
parentda55b0d4352d2daf4a8d9f4130d34546e9f01555 (diff)
Change to use tags removed fields instead of raw fields
Diffstat (limited to 'src/components/user_profile/user_profile.vue')
-rw-r--r--src/components/user_profile/user_profile.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_profile/user_profile.vue b/src/components/user_profile/user_profile.vue
index 5bffba3a..54f2d4b3 100644
--- a/src/components/user_profile/user_profile.vue
+++ b/src/components/user_profile/user_profile.vue
@@ -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"