Skip to content

Commit 36bc7ba

Browse files
authored
Initial commit (#38)
1 parent 87a3fe9 commit 36bc7ba

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

components/kern-table/CellComponents.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import KernButton from "../kern-button/KernButton";
99
import { AdminMessageLevel } from "../../types/admin-messages";
1010
import { FeedbackType, ModelsDownloadedStatus } from "@/submodules/javascript-functions/enums/enums";
1111
import LoadingIcon from "@/submodules/react-components/components/LoadingIcon";
12-
import { EvaluationRunState } from "@/src/types/components/projects/projectId/settings/playground";
12+
import { EvaluationRunState } from "../../types/evaluationRun";
13+
1314

1415
function OrganizationAndUsersCell({ organization }) {
1516
return (

types/evaluationRun.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export enum EvaluationRunState {
2+
INITIATED = 'INITIATED',
3+
RUNNING = 'RUNNING',
4+
SUCCESS = 'SUCCESS',
5+
FAILED = 'FAILED',
6+
}

0 commit comments

Comments
 (0)