1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

pull only writable collections when editing

This commit is contained in:
Kyle Spearrin
2017-08-30 15:58:51 -04:00
parent f019dc6575
commit 63033ca12d
4 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@
$scope.loading = true;
$scope.$on('$viewContentLoaded', function () {
var collectionPromise = apiService.collections.listMe({}, function (collections) {
var collectionPromise = apiService.collections.listMe({ writeOnly: false }, function (collections) {
var decCollections = [];
for (var i = 0; i < collections.Data.length; i++) {