Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sort order in submenu "Einstellungen" needs update #695

Closed
ptweety opened this issue Sep 1, 2019 · 0 comments
Closed

Sort order in submenu "Einstellungen" needs update #695

ptweety opened this issue Sep 1, 2019 · 0 comments
Labels
🐛 bug-report Something isn't working 🏷️ WebUI This refs the WebUI component 🌱 minor This is a issue/ticket which can be easily fixed

Comments

@ptweety
Copy link
Contributor

ptweety commented Sep 1, 2019

Describe the bug
@jp112sdl: die neue Sortierung ( #663 ) im Menü Einstellungen ist nicht korrekt. Die Einträge für Systemvariablen und Systemsteuerung ist vertauscht.

Additional context
Hier ein möglicher Patch:

--- admin.js.orig
+++ admin.js
@@ -36,8 +36,8 @@
 
     //{id: "submenuCreateTestPage"     , action: function() { ConfigData.check(function() { WebUI.enter(CreateTestPage); } );  } },
     //{id: "submenuDeviceFirmware"     , action: function() { ConfigData.check(function() { WebUI.enter(DeviceFirmware); } );  } },
-    {id: "submenuSysVar"      , action: function() { ConfigData.check(function() { WebUI.enter(VariableListPage); }); }  },
-    {id: "submenuSysControl"     , action: function() { WebUI.enter(SystemControlPage);  } }
+    {id: "submenuSysControl"     , action: function() { WebUI.enter(SystemControlPage);  } },
+    {id: "submenuSysVar"      , action: function() { ConfigData.check(function() { WebUI.enter(VariableListPage); }); }  }
 
   ]},
   {id: "menuHelpPage"          , align: "right", action: function() { WebUI.enter(HelpPage); }, submenu: [ ]},
@jens-maus jens-maus added 🐛 bug-report Something isn't working 🏷️ WebUI This refs the WebUI component 🌱 minor This is a issue/ticket which can be easily fixed labels Sep 2, 2019
@jens-maus jens-maus added this to the next release milestone Sep 2, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐛 bug-report Something isn't working 🏷️ WebUI This refs the WebUI component 🌱 minor This is a issue/ticket which can be easily fixed
Projects
None yet
Development

No branches or pull requests

2 participants