1
0
mirror of https://github.com/lensapp/lens.git synced 2024-10-26 09:47:18 +03:00

Revert "fix: Custom Resource Definitions should be the first entry in the side bar"

This reverts commit a8ff6ce095.
This commit is contained in:
Sebastian Malton 2023-05-23 09:09:13 -04:00
parent 7d46cb845d
commit 1099e65c52
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ const customResourceDefinitionGroupsSidebarItemsComputedInjectable = getInjectab
parentId: customResourcesSidebarItemInjectable.id,
onClick: noop,
title: group.replaceAll(".", "\u200b."), // Replace dots with zero-width spaces to allow line breaks
orderNumber: index + 1,
orderNumber: 10 * index,
}),
injectionToken: sidebarItemInjectionToken,
});
@ -62,7 +62,7 @@ const customResourceDefinitionGroupsSidebarItemsComputedInjectable = getInjectab
group: definition.getGroup(),
apiName: definition.getPluralName(),
}),
orderNumber: index,
orderNumber: 10 * index,
}),
injectionToken: sidebarItemInjectionToken,
});

View File

@ -20,7 +20,7 @@ const customResourceDefinitionsSidebarItemInjectable = getInjectable({
onClick: di.inject(navigateToCustomResourcesInjectable),
isActive: di.inject(routeIsActiveInjectable, customResourceDefinitionsRoute),
isVisible: customResourceDefinitionsRoute.isEnabled,
orderNumber: 0,
orderNumber: 10,
};
},
injectionToken: sidebarItemInjectionToken,