Skip to content

Commit 2af6c27

Browse files
committed
Bug fixes and improvements
Signed-off-by: Gašper Grom <gasper.grom@gmail.com>
1 parent ecf47fe commit 2af6c27

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

frontend/app/components/modules/project/views/contributors.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,28 @@
1616
>
1717
<template #default="{ observer }">
1818
<lfx-scroll-view
19-
id="active-contributors"
19+
id="contributors-leaderboard"
2020
:observer="observer"
2121
>
22-
<lfx-project-active-contributors />
22+
<lfx-project-contributors-leaderboard />
2323
</lfx-scroll-view>
2424
<lfx-scroll-view
25-
id="active-organizations"
25+
id="organizations-leaderboard"
2626
:observer="observer"
2727
>
28-
<lfx-project-active-organizations />
28+
<lfx-project-organizations-leaderboard />
2929
</lfx-scroll-view>
3030
<lfx-scroll-view
31-
id="contributors-leaderboard"
31+
id="active-contributors"
3232
:observer="observer"
3333
>
34-
<lfx-project-contributors-leaderboard />
34+
<lfx-project-active-contributors />
3535
</lfx-scroll-view>
3636
<lfx-scroll-view
37-
id="organizations-leaderboard"
37+
id="active-organizations"
3838
:observer="observer"
3939
>
40-
<lfx-project-organizations-leaderboard />
40+
<lfx-project-active-organizations />
4141
</lfx-scroll-view>
4242
<lfx-scroll-view
4343
id="contributor-dependency"
@@ -99,10 +99,10 @@ import LfxScrollArea from '~/components/uikit/scroll-view/scroll-area.vue';
9999
import useScroll from '~/components/shared/utils/scroll';
100100
101101
const sideNavItems = [
102-
{ label: 'Active Contributors', key: 'active-contributors' },
103-
{ label: 'Active Organizations', key: 'active-organizations' },
104102
{ label: 'Contributors Leaderboard', key: 'contributors-leaderboard' },
105103
{ label: 'Organizations Leaderboard', key: 'organizations-leaderboard' },
104+
{ label: 'Active Contributors', key: 'active-contributors' },
105+
{ label: 'Active Organizations', key: 'active-organizations' },
106106
{ label: 'Contributor Dependency', key: 'contributor-dependency' },
107107
{ label: 'Organization Dependency', key: 'organization-dependency' },
108108
{ label: 'Retention', key: 'retention' },

0 commit comments

Comments
 (0)