Skip to content

Commit 0f472ca

Browse files
authored
Merge pull request #527 from getmaxun/abort-ui
fix: display abort status for aborted run
2 parents 73c9203 + edbf165 commit 0f472ca

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

public/locales/de.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,8 @@
513513
"running": "Läuft",
514514
"scheduled": "Geplant",
515515
"queued": "In Warteschlange",
516-
"failed": "Fehlgeschlagen"
516+
"failed": "Fehlgeschlagen",
517+
"aborted": "Abgebrochen"
517518
},
518519
"run_settings_modal": {
519520
"title": "Ausführungseinstellungen",

public/locales/en.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,8 @@
521521
"running": "Running",
522522
"scheduled": "Scheduled",
523523
"queued": "Queued",
524-
"failed": "Failed"
524+
"failed": "Failed",
525+
"aborted": "Aborted"
525526
},
526527
"run_settings_modal": {
527528
"title": "Run Settings",

public/locales/es.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,8 @@
514514
"running": "Ejecutando",
515515
"scheduled": "Programado",
516516
"queued": "En cola",
517-
"failed": "Fallido"
517+
"failed": "Fallido",
518+
"aborted": "Abortado"
518519
},
519520
"run_settings_modal": {
520521
"title": "Configuración de Ejecución",

public/locales/ja.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,8 @@
514514
"running": "実行中",
515515
"scheduled": "スケジュール済み",
516516
"queued": "キューに入れました",
517-
"failed": "失敗"
517+
"failed": "失敗",
518+
"aborted": "中止されました"
518519
},
519520
"run_settings_modal": {
520521
"title": "実行設定",

public/locales/zh.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,8 @@
514514
"running": "运行中",
515515
"scheduled": "已计划",
516516
"queued": "排队",
517-
"failed": "失败"
517+
"failed": "失败",
518+
"aborted": "已中止"
518519
},
519520
"run_settings_modal": {
520521
"title": "运行设置",

src/components/run/ColapsibleRow.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ export const CollapsibleRow = ({ row, handleDelete, isOpen, currentLog, abortRun
125125
{row.status === 'scheduled' && <Chip label={t('runs_table.run_status_chips.scheduled')} variant="outlined" />}
126126
{row.status === 'queued' && <Chip label={t('runs_table.run_status_chips.queued')} variant="outlined" />}
127127
{row.status === 'failed' && <Chip label={t('runs_table.run_status_chips.failed')} color="error" variant="outlined" />}
128+
{row.status === 'aborted' && <Chip label={t('runs_table.run_status_chips.aborted')} color="error" variant="outlined" />}
128129
</TableCell>
129130
)
130131
case 'delete':

0 commit comments

Comments
 (0)