Skip to content

Commit

Permalink
fix: add id to the setting menu item in user option menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jelveh committed Nov 30, 2024
1 parent e662c78 commit 67ca4cc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/gui/src/UI/UIDesktop.js
Original file line number Diff line number Diff line change
Expand Up @@ -1509,22 +1509,23 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
items: [
...items,
//--------------------------------------------------
// My Websites
// Settings
//--------------------------------------------------
{
html: i18n('my_websites'),
id: 'my_websites',
html: i18n('settings'),
id: 'settings',
onClick: async function(){
UIWindowMyWebsites();
UIWindowSettings();
}
},
//--------------------------------------------------
// Settings
// My Websites
//--------------------------------------------------
{
html: i18n('settings'),
html: i18n('my_websites'),
id: 'my_websites',
onClick: async function(){
UIWindowSettings();
UIWindowMyWebsites();
}
},
//--------------------------------------------------
Expand Down

0 comments on commit 67ca4cc

Please sign in to comment.