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"
|
||||
@click="removePerson(person)"
|
||||
>
|
||||
{{ person.displayName || (person as any).name || '' }}
|
||||
{{ person.displayName || person.name || '' }}
|
||||
</button>
|
||||
</span>
|
||||
<span>
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
class="person-circle add-person"
|
||||
@mousedown="addPerson(person)"
|
||||
>
|
||||
{{ person.displayName || (person as any).name || '' }}
|
||||
{{ person.displayName || person.name || '' }}
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Reference in a new issue