From 6786f17344bfb7fcb5a354f019f7d4aa8c9a2200 Mon Sep 17 00:00:00 2001
From: za158 <58824955+za158@users.noreply.github.com>
Date: Wed, 3 Jul 2024 13:53:54 -0400
Subject: [PATCH] wording change
---
web/gui-v2/src/components/DetailViewWorkforce.jsx | 4 ++--
web/gui-v2/src/components/ListView.test.js | 2 +-
web/gui-v2/src/static_data/table_columns.js | 2 +-
web/gui-v2/src/static_data/tooltips.js | 2 +-
web/scripts/retrieve_data.py | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/web/gui-v2/src/components/DetailViewWorkforce.jsx b/web/gui-v2/src/components/DetailViewWorkforce.jsx
index 680cb7d..68e9782 100644
--- a/web/gui-v2/src/components/DetailViewWorkforce.jsx
+++ b/web/gui-v2/src/components/DetailViewWorkforce.jsx
@@ -36,10 +36,10 @@ const DetailViewWorkforce = ({
key: 'tt1_jobs',
description: (
- According to our data, {data.name} currently employs about {commas(data.other_metrics.tt1_jobs.total)} Tech Tier 1 workers
+ According to our data, {data.name} currently employs about {commas(data.other_metrics.tt1_jobs.total)} Tech Team 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>}).
- Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. Recent hires may be omitted. Read more >>
+ Tech Team 1 workers include anyone with technical skills and a reasonable probability of working with AI. Recent hires may be omitted. Read more >>
),
},
diff --git a/web/gui-v2/src/components/ListView.test.js b/web/gui-v2/src/components/ListView.test.js
index 7282eb2..e904eff 100644
--- a/web/gui-v2/src/components/ListView.test.js
+++ b/web/gui-v2/src/components/ListView.test.js
@@ -13,7 +13,7 @@ import { exportsForTestingOnly } from './ListViewTable';
const { extractCurrentFilters, filterRow } = exportsForTestingOnly;
-const INITIAL_COLUMNS = ['Company', 'Country', 'AI publications', 'AI patents', 'AI jobs', 'Tech Tier 1 jobs'];
+const INITIAL_COLUMNS = ['Company', 'Country', 'AI publications', 'AI patents', 'AI jobs', 'Tech Team 1 jobs'];
const REMOVED_COLUMN = 'AI publications';
describe("ListView", () => {
diff --git a/web/gui-v2/src/static_data/table_columns.js b/web/gui-v2/src/static_data/table_columns.js
index 0ebb90d..d673bdc 100644
--- a/web/gui-v2/src/static_data/table_columns.js
+++ b/web/gui-v2/src/static_data/table_columns.js
@@ -550,7 +550,7 @@ const columnDefinitions = [
initialCol: true,
},
{
- title: "Tech Tier 1 jobs",
+ title: "Tech Team 1 jobs",
key: "tt1_jobs",
aggregateType: "median",
category: "workforce",
diff --git a/web/gui-v2/src/static_data/tooltips.js b/web/gui-v2/src/static_data/tooltips.js
index f157e12..82e5045 100644
--- a/web/gui-v2/src/static_data/tooltips.js
+++ b/web/gui-v2/src/static_data/tooltips.js
@@ -55,7 +55,7 @@ const tooltips = {
telecom_patents: <>The number of AI-related patents the company filed over the past 10 years that were relevant to the listed use case. Some recent patents may be omitted. Read more >>>,
transport_patents: <>The number of AI-related patents the company filed over the past 10 years that were relevant to the listed use case. Some recent patents may be omitted. Read more >> >,
ai_jobs: <>The number of AI workers employed by the company as of the last data update (recent hires may be omitted). AI workers in PARAT include anyone a high probability of working with AI. Read more >>>,
- tt1_jobs: <>The number of known Tech Tier 1 workers employed by the company as of the last data update (recent hires may be omitted). Tech Tier 1 workers include anyone with technical skills and a reasonable probability of working with AI. Read more >>>,
+ tt1_jobs: <>The number of known Tech Team 1 workers employed by the company as of the last data update (recent hires may be omitted). Tech Team 1 workers include anyone with technical skills and a reasonable probability of working with AI. Read more >>>,
},
groupExplanations: {
sp500: (
diff --git a/web/scripts/retrieve_data.py b/web/scripts/retrieve_data.py
index 0c29bfd..56e0a63 100644
--- a/web/scripts/retrieve_data.py
+++ b/web/scripts/retrieve_data.py
@@ -159,7 +159,7 @@
("Patents: AI applications and techniques: Robotics", lambda row: row["patents"]["Robotics"]["total"]),
("Patents: AI applications and techniques: Speech processing", lambda row: row["patents"]["Speech_Processing"]["total"]),
("Workforce: AI workers", lambda row: row["other_metrics"]["ai_jobs"]["total"]),
- ("Workforce: Tech Tier 1 workers", lambda row: row["other_metrics"]["tt1_jobs"]["total"]),
+ ("Workforce: Tech Team 1 workers", lambda row: row["other_metrics"]["tt1_jobs"]["total"]),
])
### END CONSTANTS ###