fix: add id to the setting menu item in user option menu

This commit is contained in:
jelveh
2024-11-29 19:40:54 -08:00
parent e662c782b7
commit 67ca4ccf20

View File

@@ -1509,6 +1509,16 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
items: [
...items,
//--------------------------------------------------
// Settings
//--------------------------------------------------
{
html: i18n('settings'),
id: 'settings',
onClick: async function(){
UIWindowSettings();
}
},
//--------------------------------------------------
// My Websites
//--------------------------------------------------
{
@@ -1519,15 +1529,6 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
}
},
//--------------------------------------------------
// Settings
//--------------------------------------------------
{
html: i18n('settings'),
onClick: async function(){
UIWindowSettings();
}
},
//--------------------------------------------------
// Task Manager
//--------------------------------------------------
{