File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ import KernButton from "../kern-button/KernButton";
9
9
import { AdminMessageLevel } from "../../types/admin-messages" ;
10
10
import { FeedbackType , ModelsDownloadedStatus } from "@/submodules/javascript-functions/enums/enums" ;
11
11
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
+
13
14
14
15
function OrganizationAndUsersCell ( { organization } ) {
15
16
return (
Original file line number Diff line number Diff line change
1
+ export enum EvaluationRunState {
2
+ INITIATED = 'INITIATED' ,
3
+ RUNNING = 'RUNNING' ,
4
+ SUCCESS = 'SUCCESS' ,
5
+ FAILED = 'FAILED' ,
6
+ }
You can’t perform that action at this time.
0 commit comments