mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00: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:
parent
1ff2436240
commit
49db31a9aa
@ -38,7 +38,7 @@ const customResourceDefinitionGroupsSidebarItemsComputedInjectable = getInjectab
|
|||||||
parentId: customResourcesSidebarItemInjectable.id,
|
parentId: customResourcesSidebarItemInjectable.id,
|
||||||
onClick: noop,
|
onClick: noop,
|
||||||
title: group.replaceAll(".", "\u200b."), // Replace dots with zero-width spaces to allow line breaks
|
title: group.replaceAll(".", "\u200b."), // Replace dots with zero-width spaces to allow line breaks
|
||||||
orderNumber: 10 * index,
|
orderNumber: index + 1,
|
||||||
}),
|
}),
|
||||||
injectionToken: sidebarItemInjectionToken,
|
injectionToken: sidebarItemInjectionToken,
|
||||||
});
|
});
|
||||||
@ -62,7 +62,7 @@ const customResourceDefinitionGroupsSidebarItemsComputedInjectable = getInjectab
|
|||||||
group: definition.getGroup(),
|
group: definition.getGroup(),
|
||||||
apiName: definition.getPluralName(),
|
apiName: definition.getPluralName(),
|
||||||
}),
|
}),
|
||||||
orderNumber: 10 * index,
|
orderNumber: index,
|
||||||
}),
|
}),
|
||||||
injectionToken: sidebarItemInjectionToken,
|
injectionToken: sidebarItemInjectionToken,
|
||||||
});
|
});
|
||||||
|
|||||||
@ -20,7 +20,7 @@ const customResourceDefinitionsSidebarItemInjectable = getInjectable({
|
|||||||
onClick: di.inject(navigateToCustomResourcesInjectable),
|
onClick: di.inject(navigateToCustomResourcesInjectable),
|
||||||
isActive: di.inject(routeIsActiveInjectable, customResourceDefinitionsRoute),
|
isActive: di.inject(routeIsActiveInjectable, customResourceDefinitionsRoute),
|
||||||
isVisible: customResourceDefinitionsRoute.isEnabled,
|
isVisible: customResourceDefinitionsRoute.isEnabled,
|
||||||
orderNumber: 10,
|
orderNumber: 0,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
injectionToken: sidebarItemInjectionToken,
|
injectionToken: sidebarItemInjectionToken,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user