fix js issue with main view #66

Merged
jorge merged 3 commits from develop into main 2022-04-28 19:46:24 +02:00
2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -58,12 +58,12 @@ if (count($items[0]) == 0) {
// we did not retrieve a menu from the wordpress site
// let's create a default menu
if ($wordpress_site) {
$project_item = [
$collections_item = [
"id" => 1,
"title" => "Project",
"url" => $wordpress_site
"title" => "Collections",
"url" => "/"
];
$items[0][1] = $project_item;
$items[0][1] = $collections_item;
}
$login_item = [
"id" => 2,