Fixed build issues.

This commit is contained in:
2019-01-10 14:59:12 +01:00
parent 069922b7da
commit 93df9d235d
6 changed files with 14 additions and 13 deletions

View File

@ -88,9 +88,9 @@ ComunicWeb.pages.groups.pages.main = {
var has_group = false;
for (const i in list) {
for (var i in list) {
if (list.hasOwnProperty(i)) {
const group = list[i];
var group = list[i];
has_group = true;
ComunicWeb.pages.groups.pages.main._display_group(group, target);
}