Skip to content

Commit a69593b

Browse files
- [Hub] Minor changes in the UI labels
1 parent 88a1105 commit a69593b

3 files changed

Lines changed: 7 additions & 9 deletions

File tree

hub/src/locale/en.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,15 @@
170170
"empty_message_text": "No runs to display.",
171171
"nomatch_message_title": "No matches",
172172
"nomatch_message_text": "We can't find a match.",
173-
"log": "Log",
174-
"run_name": "Run",
173+
"log": "Logs",
174+
"run_name": "Name",
175175
"workflow_name": "Workflow",
176176
"provider_name": "Provider",
177177
"status": "Status",
178-
"submitted_at": "Run time",
178+
"submitted_at": "Submitted",
179179
"artifacts": "Artifacts",
180-
"artifacts_count": "Artifacts count",
181-
"hub_user_name": "Hub user name",
180+
"artifacts_count": "Artifacts",
181+
"hub_user_name": "User",
182182
"statuses": {
183183
"pending": "Pending",
184184
"submitted": "Submitted",

hub/src/pages/Runs/Details/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,7 @@ export const RunDetails: React.FC = () => {
112112
<Container header={<Header variant="h2">{t('common.general')}</Header>}>
113113
<ColumnLayout columns={4} variant="text-grid">
114114
<div>
115-
<Box variant="awsui-key-label">
116-
{t('projects.run.workflow_name')}/{t('projects.run.provider_name')}
117-
</Box>
115+
<Box variant="awsui-key-label">{t('projects.run.workflow_name')}</Box>
118116
<div>{runData.workflow_name ?? runData.provider_name}</div>
119117
</div>
120118

hub/src/pages/Runs/List/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const RunList: React.FC = () => {
4949
},
5050
{
5151
id: 'workflow_name',
52-
header: `${t('projects.run.workflow_name')}/${t('projects.run.provider_name')}`,
52+
header: `${t('projects.run.workflow_name')}`,
5353
cell: (item: IRun) => item.workflow_name ?? item.provider_name,
5454
},
5555
{

0 commit comments

Comments
 (0)