mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-28 08:14:03 +02:00
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+ */
|
/*! Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
||||||
|
|
||||||
;(function (Icinga) {
|
;(function(Icinga) {
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@ -434,7 +434,7 @@
|
|||||||
thisArg = this;
|
thisArg = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.data.forEach(function(value, key) {
|
this.data.forEach(function(value, key) {
|
||||||
callback.call(thisArg, value['value'], key);
|
callback.call(thisArg, value['value'], key);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user