Skip to content

Commit

Permalink
fix in labels
Browse files Browse the repository at this point in the history
  • Loading branch information
mligtenberg committed Jan 12, 2025
1 parent aae7068 commit 7c4116a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions apps/servicebus-browser-app/src/app/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ const macTemplate: Array<MenuItemConstructorOptions | MenuItem> = [
{
label: app.name,
submenu: [
{ role: 'about' },
{
label: 'About ' + app.name,
role: 'about'
},
{ type: 'separator' },
{ role: 'quit' }
{
label: 'Quit ' + app.name,
role: 'quit'
}
]
},
// { role: 'fileMenu' }
Expand Down

0 comments on commit 7c4116a

Please sign in to comment.