mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-23 09:54:01 +00:00
Fix problem with pasting multiple emails
This commit is contained in:
parent
fb42489803
commit
144f1396b7
1 changed files with 2 additions and 2 deletions
|
@ -53,9 +53,9 @@ script(type='text/ng-template', id='shareProjectModalTemplate')
|
|||
ng-model="inputs.contacts"
|
||||
focus-on="open"
|
||||
display-property="display"
|
||||
key-property="id"
|
||||
add-on-paste="true"
|
||||
replace-spaces-with-dashes="false"
|
||||
type="email"
|
||||
)
|
||||
auto-complete(
|
||||
source="filterAutocompleteUsers($query)"
|
||||
|
@ -137,7 +137,7 @@ script(type="text/ng-template", id="makePrivateModalTemplate")
|
|||
script(type="text/ng-template", id="shareTagTemplate")
|
||||
.tag-template
|
||||
span(ng-if="data.type")
|
||||
i.fa.fa-fw(ng-class="{'fa-user': data.type == 'user', 'fa-group': data.type == 'group'}")
|
||||
i.fa.fa-fw(ng-class="{'fa-user': data.type != 'group', 'fa-group': data.type == 'group'}")
|
||||
|
|
||||
span {{$getDisplayText()}}
|
||||
|
|
||||
|
|
Loading…
Reference in a new issue