Skip to content

Commit

Permalink
Merge pull request #7734 from ehuelsmann/fix/master/new-window-error
Browse files Browse the repository at this point in the history
Fix 'New Window' throwing an error
  • Loading branch information
ehuelsmann authored Nov 28, 2023
2 parents 8c69c2e + 6dbf541 commit 01172ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/LedgerSMB/Routes/ERP/API/MenuNodes.pm
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ get api '/menu-nodes' => sub {
url => $row->{url},
menu => $row->{menu} ? \1 : \0,
label => $locale->maketext($row->{label}),
parent => $row->{parent}
parent => $row->{parent},
standalone => $row->{standalone}
};
}
die $sth->errstr if $sth->err;
Expand Down

0 comments on commit 01172ba

Please sign in to comment.