1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[PM-21719] Remove Assign To Collections Modal When No Editable Collections (#15137)

* remove assign to collections option when user does not have editable collections
This commit is contained in:
Jason Ng
2025-06-10 18:03:17 -04:00
committed by GitHub
parent fc03ed662e
commit 3326877a67
4 changed files with 36 additions and 13 deletions

View File

@@ -788,7 +788,13 @@
<button
type="button"
(click)="share()"
*ngIf="editMode && cipher && !cipher.organizationId && !cloneMode"
*ngIf="
editMode &&
cipher &&
!cipher.organizationId &&
!cloneMode &&
writeableCollections.length > 0
"
>
{{ "move" | i18n }}
</button>