Skip to content

Commit 67ca4cc

Browse files
committed
fix: add id to the setting menu item in user option menu
1 parent e662c78 commit 67ca4cc

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/gui/src/UI/UIDesktop.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -1509,22 +1509,23 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
15091509
items: [
15101510
...items,
15111511
//--------------------------------------------------
1512-
// My Websites
1512+
// Settings
15131513
//--------------------------------------------------
15141514
{
1515-
html: i18n('my_websites'),
1516-
id: 'my_websites',
1515+
html: i18n('settings'),
1516+
id: 'settings',
15171517
onClick: async function(){
1518-
UIWindowMyWebsites();
1518+
UIWindowSettings();
15191519
}
15201520
},
15211521
//--------------------------------------------------
1522-
// Settings
1522+
// My Websites
15231523
//--------------------------------------------------
15241524
{
1525-
html: i18n('settings'),
1525+
html: i18n('my_websites'),
1526+
id: 'my_websites',
15261527
onClick: async function(){
1527-
UIWindowSettings();
1528+
UIWindowMyWebsites();
15281529
}
15291530
},
15301531
//--------------------------------------------------

0 commit comments

Comments
 (0)