IDK why
This commit is contained in:
parent
d3e2faf81d
commit
6ec15debef
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
class="person-circle remove-person"
|
class="person-circle remove-person"
|
||||||
@click="removePerson(person)"
|
@click="removePerson(person)"
|
||||||
>
|
>
|
||||||
{{ person.displayName || (person as any).name || '' }}
|
{{ person.displayName || person.name || '' }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
class="person-circle add-person"
|
class="person-circle add-person"
|
||||||
@mousedown="addPerson(person)"
|
@mousedown="addPerson(person)"
|
||||||
>
|
>
|
||||||
{{ person.displayName || (person as any).name || '' }}
|
{{ person.displayName || person.name || '' }}
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue