Merge pull request #640 from sharelatex/as-fix-leave-quick-action

Show leave quick action instead of archive for unowned projects
This commit is contained in:
Alasdair Smith
2018-06-07 11:44:36 +01:00
committed by GitHub
2 changed files with 14 additions and 3 deletions
+10 -2
View File
@@ -64,13 +64,21 @@ if settings.overleaf
)
i.icon.fa.fa-cloud-download
button.btn.btn-link.action-btn(
ng-if="!project.archived"
ng-if="!project.archived && isOwner()"
tooltip=translate('archive'),
tooltip-placement="top",
tooltip-append-to-body="true",
ng-click="archive($event)"
ng-click="archiveOrLeave($event)"
)
i.icon.fa.fa-inbox
button.btn.btn-link.action-btn(
ng-if="!project.archived && !isOwner()"
tooltip=translate('leave'),
tooltip-placement="top",
tooltip-append-to-body="true",
ng-click="archiveOrLeave($event)"
)
i.icon.fa.fa-sign-out
button.btn.btn-link.action-btn(
ng-if="project.archived"
tooltip=translate('unarchive'),