|
|
|
|
@ -17,6 +17,8 @@ import { CombinedState, Task } from 'reducers/interfaces';
|
|
|
|
|
import { getProjectsAsync } from 'actions/projects-actions';
|
|
|
|
|
import { cancelInferenceAsync } from 'actions/models-actions';
|
|
|
|
|
import TaskItem from 'components/tasks-page/task-item';
|
|
|
|
|
import MoveTaskModal from 'components/move-task-modal/move-task-modal';
|
|
|
|
|
import ModelRunnerDialog from 'components/model-runner-modal/model-runner-dialog';
|
|
|
|
|
import DetailsComponent from './details';
|
|
|
|
|
import ProjectTopBar from './top-bar';
|
|
|
|
|
|
|
|
|
|
@ -109,6 +111,8 @@ export default function ProjectPageComponent(): JSX.Element {
|
|
|
|
|
</React.Fragment>
|
|
|
|
|
))}
|
|
|
|
|
</Col>
|
|
|
|
|
<MoveTaskModal />
|
|
|
|
|
<ModelRunnerDialog />
|
|
|
|
|
</Row>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|