mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
fix null check on subvault management
This commit is contained in:
parent
31ce92fa9d
commit
cdf029bc84
@ -32,9 +32,10 @@
|
||||
return cipher;
|
||||
}
|
||||
|
||||
return;
|
||||
return null;
|
||||
}).then(function (cipher) {
|
||||
if (!cipher.Edit) {
|
||||
if (!cipher) {
|
||||
$scope.loadingSubvaults = false;
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
||||
Loading...
|
||||
</div>
|
||||
<div ng-show="!loadingSubvaults && !subvaults.length">
|
||||
<p>No subvaults.</p>
|
||||
<p>No subvaults to manage.</p>
|
||||
</div>
|
||||
<div class="table-responsive" ng-show="subvaults.length" style="margin: 0;">
|
||||
<table class="table table-striped table-hover" style="margin: 0;">
|
||||
|
Loading…
Reference in New Issue
Block a user