Skip to content

Commit

Permalink
Fix 'New Window' throwing an error
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuelsmann committed Nov 28, 2023
1 parent f4d7c14 commit 91eac3e
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 91eac3e

Please sign in to comment.