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.
1 parent af25b54 commit 970c0b4Copy full SHA for 970c0b4
src/ui/layouts/common/layouts/AuthenticatedLayout/AuthenticatedSidebar/Menu/index.tsx
@@ -37,6 +37,25 @@ export const Menu: React.FC = () => {
37
to={routePaths.pipelines.list}
38
text={translate('menu.pipelines.text')}
39
/>
40
+ <MenuItem
41
+ isActive={() => {
42
+ return (
43
+ !!matchPath(locationPath, {
44
+ path: routePaths.pipelines.allRuns,
45
+ exact: false,
46
+ }) ||
47
48
+ path: routePaths.run.run.base(':id'),
49
50
+ })
51
+ );
52
+ }}
53
+ Icon={() => (
54
+ <icons.pipeline color={iconColors.white} size={iconSizes.md} />
55
+ )}
56
+ to={routePaths.pipelines.allRuns}
57
+ text={'Runs'}
58
+ />
59
<MenuItem
60
isActive={() => {
61
return (
0 commit comments