#8919 - Fix issue with wrong casing of variable name

This commit is contained in:
Bjarke Berg
2020-09-22 10:04:55 +02:00
parent 5df3e051d3
commit 164fa24ef3

View File

@@ -209,7 +209,7 @@ function iconHelper($http, $q, $sce, $timeout, umbRequestHelper) {
,'Failed to retrieve icon: ' + iconName)
.then(icon => {
if(icon) {
var trustedIcon = this.defineIcon(icon.name, icon.SvgString);
var trustedIcon = this.defineIcon(icon.Name, icon.SvgString);
liveRequests = _.filter(liveRequests, iconRequestPath);