fix js issue with main view #66

Merged
jorge merged 3 commits from develop into main 2022-04-28 19:46:24 +02:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit c986e12de6 - Show all commits

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,