Fix wrong icons for non-admins

This commit is contained in:
Girish Ramakrishnan
2019-10-11 18:35:09 -07:00
parent 247eea1a0c
commit 16728ab51c

View File

@@ -1616,6 +1616,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
var canManageApp = that._userInfo.admin;
if (!canManageApp) {
that._appPostProcess(app); // this will also set the correct iconUrl
that._updateAppCache(app);
return iteratorCallback();
}