Create run dialog

This commit is contained in:
Takeshi Kimata
2024-05-26 22:02:14 +09:00
parent 1bab870239
commit 5ae4417c23
8 changed files with 219 additions and 40 deletions

View File

@@ -33,15 +33,22 @@ type ProgressSeriesType = {
type RunsMessages = {
runList: string;
run: string;
newRun: string;
editRun: string;
deleteRun: string;
id: string;
name: string;
description: string;
lastUpdate: string;
actions: string;
newRun: string;
deleteRun: string;
noRunsFound: string;
runName: string;
runDescription: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
noRunsFound: string;
areYouSure: string;
delete: string;
};