We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f05dd9f + c3b9bce commit 798cf71Copy full SHA for 798cf71
webapp/components/drawer/Drawer.js
@@ -138,7 +138,9 @@ const DrawerList = ({
138
function getMenu () {
139
const [modelDrawerItems, toolsDrawerItems] = [[], []];
140
// eslint-disable-next-line array-callback-return
141
- Object.values(widgets).sort((w1, w2) => w1.pos - w2.pos).filter((widget) => {
+ Object.values(widgets)
142
+ //.sort((w1, w2) => w1.pos - w2.pos)
143
+ .filter((widget) => {
144
widget.specification !== TOOLS_LIST
145
? modelDrawerItems.push(widget) : toolsDrawerItems.push(widget);
146
});
0 commit comments