1
0
mirror of https://github.com/lensapp/lens.git synced 2024-10-10 15:59:50 +03:00

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

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2023-05-15 14:30:13 -04:00
parent 1ff2436240
commit 49db31a9aa
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: 10 * index,
orderNumber: index + 1,
}),
injectionToken: sidebarItemInjectionToken,
});
@ -62,7 +62,7 @@ const customResourceDefinitionGroupsSidebarItemsComputedInjectable = getInjectab
group: definition.getGroup(),
apiName: definition.getPluralName(),
}),
orderNumber: 10 * index,
orderNumber: 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: 10,
orderNumber: 0,
};
},
injectionToken: sidebarItemInjectionToken,