Skip to content

Commit

Permalink
Update workforce count wording
Browse files Browse the repository at this point in the history
  • Loading branch information
jmelot committed Jun 26, 2024
1 parent cf1c187 commit da0fc9d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions web/gui-v2/src/components/DetailViewWorkforce.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,23 @@ const styles = {
const DetailViewWorkforce = ({
data,
}) => {
const yearSpanText = <>{overall.years[0]} to {overall.years[overall.years.length-1]}</>;

const otherMetricsWorkforce = [
{
key: 'ai_jobs',
description: (
<span>
From {yearSpanText}, {data.name} employed about {commas(data.other_metrics.ai_jobs.total)} AI workers
At the current time, {data.name} employs about {commas(data.other_metrics.ai_jobs.total)} AI workers
(#{data.other_metrics.ai_jobs.rank} rank in PARAT
{data.groups.sp500 && <>, #{data.other_metrics.ai_jobs.sp500_rank} in the S&P500</>}).
<em>AI workers in PARAT include anyone a high probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></em>
{data.groups.sp500 && <>, #{data.other_metrics.ai_jobs.sp500_rank} in the S&P500</>}). <em>AI workers in PARAT include anyone a high probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></em>
</span>
),
},
{
key: 'tt1_jobs',
description: (
<span>
From {yearSpanText}, {data.name} employed about {commas(data.other_metrics.tt1_jobs.total)} Tech Tier 1 workers
At the current time, {data.name} employs about {commas(data.other_metrics.tt1_jobs.total)} Tech Tier 1 workers
(#{data.other_metrics.tt1_jobs.rank} rank in PARAT
{data.groups.sp500 && <>, #{data.other_metrics.tt1_jobs.sp500_rank} in the S&P500</>}).
<em> Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. <ExternalLink href="https://eto.tech/dataset-docs/private-sector-ai-indicators/#workforce">Read more &gt;&gt;</ExternalLink></em>
Expand Down

0 comments on commit da0fc9d

Please sign in to comment.