forked from AkkomaGang/akkoma-fe
Change to use tags removed fields instead of raw fields
This commit is contained in:
parent
da55b0d435
commit
064b59812c
1 changed files with 2 additions and 2 deletions
|
@ -22,13 +22,13 @@
|
||||||
>
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<dt
|
<dt
|
||||||
:title="user.fields[index].name"
|
:title="user.fields_text[index].name"
|
||||||
class="user-profile-field-name"
|
class="user-profile-field-name"
|
||||||
@click.prevent="linkClicked"
|
@click.prevent="linkClicked"
|
||||||
v-html="field.name"
|
v-html="field.name"
|
||||||
/>
|
/>
|
||||||
<dd
|
<dd
|
||||||
:title="user.fields[index].value"
|
:title="user.fields_text[index].value"
|
||||||
class="user-profile-field-value"
|
class="user-profile-field-value"
|
||||||
@click.prevent="linkClicked"
|
@click.prevent="linkClicked"
|
||||||
v-html="field.value"
|
v-html="field.value"
|
||||||
|
|
Loading…
Reference in a new issue