File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
app/views/WorkflowInputsView
pages/data/[entityListType]/[entityId]/[trsId] Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,9 @@ import { BRCDataCatalogGenome } from "../../apis/catalog/brc-analytics-catalog/c
22import { GA2AssemblyEntity } from "../../apis/catalog/ga2/entities" ;
33
44export type Assembly = BRCDataCatalogGenome | GA2AssemblyEntity ;
5+
6+ export interface Props {
7+ entityId : string ;
8+ entityListType : string ;
9+ trsId : string ;
10+ }
Original file line number Diff line number Diff line change 11import { Detail } from "@databiosphere/findable-ui/lib/components/Detail/detail" ;
2- import { Assembly } from "./types" ;
2+ import { Assembly , Props } from "./types" ;
33import { Top } from "../../components/Entity/components/ConfigureWorkflowInputs/components/Top/top" ;
44import { SideColumn } from "../../components/Entity/components/ConfigureWorkflowInputs/components/SideColumn/sideColumn" ;
55import { Main } from "../../components/Entity/components/ConfigureWorkflowInputs/components/Main/main" ;
66import { useConfigureInputs } from "./hooks/UseConfigureInputs/useConfigureInputs" ;
77import { useConfiguredSteps } from "../../components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/steps/hook" ;
88import { augmentConfiguredSteps } from "../../components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/steps/utils" ;
99import { SEQUENCING_STEPS } from "../../components/Entity/components/ConfigureWorkflowInputs/components/Main/components/Stepper/steps/constants" ;
10- import { Props } from "../../../pages/data/[entityListType]/[entityId]/[trsId]" ;
1110import { getAssembly } from "../../services/workflows/entities" ;
1211import { getWorkflow } from "../../services/workflows/entities" ;
1312
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ interface PageUrlParams extends ParsedUrlQuery {
3131 trsId : string ;
3232}
3333
34- export interface Props {
34+ interface Props {
3535 entityId : string ;
3636 entityListType : string ;
3737 trsId : string ;
You can’t perform that action at this time.
0 commit comments