mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-08 22:20:38 -06:00
fix: add id to the setting menu item in user option menu
This commit is contained in:
@@ -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
|
||||
//--------------------------------------------------
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user