diff --git a/frontend/app/components/modules/organization/components/overview/activity-chart.vue b/frontend/app/components/modules/organization/components/overview/activity-chart.vue index b82a682e..afd09d84 100644 --- a/frontend/app/components/modules/organization/components/overview/activity-chart.vue +++ b/frontend/app/components/modules/organization/components/overview/activity-chart.vue @@ -15,8 +15,8 @@ SPDX-License-Identifier: MIT />
-

Activities

-

by {{ orgDisplayName }} contributors over the years

+

Contributions

+

by {{ orgDisplayName }} contributors (last 10 years)

- No activity data available. + No contribution data available.
@@ -87,7 +87,7 @@ const chartData = computed(() => { const chartSeries = computed(() => [ { - name: 'Activities', + name: 'Contributions', type: 'bar', yAxisIndex: 0, dataIndex: 0, diff --git a/frontend/app/components/modules/organization/components/overview/contributors-chart.vue b/frontend/app/components/modules/organization/components/overview/contributors-chart.vue index ff340238..d1f7bf73 100644 --- a/frontend/app/components/modules/organization/components/overview/contributors-chart.vue +++ b/frontend/app/components/modules/organization/components/overview/contributors-chart.vue @@ -16,7 +16,7 @@ SPDX-License-Identifier: MIT

Active Contributors

-

by {{ orgDisplayName }} contributors over the years

+

by {{ orgDisplayName }} (last 10 years)

[ trend: data.value?.activeContributorsTrend, trendAbsolute: data.value?.activeContributorsTrendAbsolute, trendPrevious: data.value?.activeContributorsTrendPrevious, - label: `Active ${orgDisplayName.value} contributors (last 365d)`, + label: `Active ${orgDisplayName.value} contributors (last 2 years)`, }, { icon: 'user-shield', @@ -89,7 +89,7 @@ const kpis = computed(() => [ trend: undefined, trendAbsolute: undefined, trendPrevious: undefined, - label: `Maintainer roles held by ${orgDisplayName.value} contributors`, + label: `Maintainer roles held by ${orgDisplayName.value} contributors (last 2 years)`, }, { icon: 'laptop-code', @@ -97,7 +97,7 @@ const kpis = computed(() => [ trend: undefined, trendAbsolute: undefined, trendPrevious: undefined, - label: `Critical projects ${orgDisplayName.value} employees contributed to`, + label: `Critical projects ${orgDisplayName.value} employees contributed to (last 2 years)`, }, ]); diff --git a/frontend/app/components/modules/organization/components/overview/projects-section.vue b/frontend/app/components/modules/organization/components/overview/projects-section.vue index 07a92128..a49994df 100644 --- a/frontend/app/components/modules/organization/components/overview/projects-section.vue +++ b/frontend/app/components/modules/organization/components/overview/projects-section.vue @@ -17,29 +17,16 @@ SPDX-License-Identifier: MIT

Critical Projects

-

{{ orgDisplayName }} contributors are involved in

+

+ {{ orgDisplayName }} contributors are involved in (last 2 years) +

- Sorted by - - Technical influence - - + Sorted by Contributors @@ -50,7 +37,7 @@ SPDX-License-Identifier: MIT
Project
Technical influence
Contributors
-
Activities
+
Contributions
Contributors
-
Activities
+
Contributions
diff --git a/frontend/docs/features/organization-page/index.md b/frontend/docs/features/organization-page/index.md index b3c7fe4f..969f6d17 100644 --- a/frontend/docs/features/organization-page/index.md +++ b/frontend/docs/features/organization-page/index.md @@ -4,32 +4,32 @@ Use the Organization Page to understand how your company contributes to critical ## Key Metrics -Three numbers at the top of the page give you an at-a-glance health check of your organization's open source activity over the **last 365 days**: +Three numbers at the top of the page give you an at-a-glance health check of your organization's open source activity over the **last 2 years**: - **Active contributors** — how many of your employees made at least one code contribution (commit, pull request, or code review). Shows a year-over-year trend so you can see if engagement is growing or declining. -- **Maintainer roles** — how many maintainer or owner roles your contributors hold across all projects. A higher number signals deeper trust and influence in those communities. +- **Maintainer roles** — how many maintainer or owner roles your contributors held across all projects in the last 2 years. A higher number signals deeper trust and influence in those communities. - **Critical projects** — how many distinct projects your team contributed to. Useful for gauging breadth of involvement. -## Activity Over Time +## Contributions Over Time -A bar chart showing your organization's total code contributions per year, from the earliest recorded activity to today. Use it to spot periods of growth, sustained investment, or pullback across your open source program. +A bar chart showing your organization's total code contributions per year for the last 10 years. Use it to spot periods of growth, sustained investment, or pullback across your open source program. ## Contributors Over Time -A bar chart showing how many unique contributors your organization had per year. Pair it with the Activity chart to distinguish between a growing team and a shrinking one that's working harder. +A bar chart showing how many unique contributors your organization had per year over the last 10 years. Pair it with the Contributions chart to distinguish between a growing team and a shrinking one that's working harder. ## Critical Projects -A ranked table of the projects your contributors were involved in, ordered by **Technical influence** — your organization's share of code contributions relative to what the whole project community produced. +A ranked table of the projects your contributors were involved in over the **last 2 years**, ordered by **Contributors** — the number of your employees active in that project. Each project row shows: -- **Technical influence** — one of four levels based on your contribution share: +- **Technical influence** — your organization's share of code contributions relative to what the whole project community produced, expressed as one of four levels: - **Leading** — a large share; your team is a primary driver of the project. - **Contributing** — a meaningful share; consistent and committed involvement. - **Participating** — a small but non-zero share; actively helping. - **Silent** — minimal or no code contribution activity. -- **Contributors** — number of your employees active in that project. -- **Activities** — total code contributions your team made. +- **Contributors** — number of your employees active in that project (primary sort). +- **Contributions** — total code contributions your team made. -The table covers an extended rolling window of recent years and counts only code contribution activity types. +The table counts only code contribution activity types (commits, pull requests, code reviews).