storage.js: Don't return in `StorageAwareMap.forEach`
This commit is contained in:
parent
5c290e1b68
commit
cfa3af51db
|
@ -1,6 +1,6 @@
|
|||
/*! Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
||||
|
||||
;(function (Icinga) {
|
||||
;(function(Icinga) {
|
||||
|
||||
'use strict';
|
||||
|
||||
|
@ -434,7 +434,7 @@
|
|||
thisArg = this;
|
||||
}
|
||||
|
||||
return this.data.forEach(function(value, key) {
|
||||
this.data.forEach(function(value, key) {
|
||||
callback.call(thisArg, value['value'], key);
|
||||
});
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue