Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornewhinton <newhinton@users.noreply.github.com>2018-12-15 16:32:49 +0300
committerGitHub <noreply@github.com>2018-12-15 16:32:49 +0300
commit568caf4d1195437ed811a26a7d5117e230accd70 (patch)
treea8d4156c0fbd6308ca8461e2ff9b5e7876a16622
parent78c7512200608cf0c4f24287b792b51e314a007e (diff)
Added missing variable to iconpicker.js
-rw-r--r--js/app/directives/iconpicker.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/app/directives/iconpicker.js b/js/app/directives/iconpicker.js
index bf2e8c03..0c885845 100644
--- a/js/app/directives/iconpicker.js
+++ b/js/app/directives/iconpicker.js
@@ -40,6 +40,7 @@
link: function(scope, element) {
IconService.getIcons().then(function(icons) {
+ scope.iconGroupsAll = icons;
scope.iconGroups = icons;
});
@@ -143,4 +144,4 @@
}
};
}]);
-}()); \ No newline at end of file
+}());