mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Fixed build issues.
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user