Skip to content
Snippets Groups Projects
Commit 57330089 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

disease and organism are optional

parent 5a45abc1
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!191Resolve "[MIN-322] Project without disease or organism defined"
......@@ -5,10 +5,10 @@ import { overviewImageView } from './overviewImageView';
export const projectSchema = z.object({
version: z.string(),
disease,
diseaseName: z.string(),
organism,
organismName: z.string(),
disease: disease.nullable(),
diseaseName: z.string().nullable(),
organism: organism.nullable(),
organismName: z.string().nullable(),
status: z.string(),
directory: z.string(),
progress: z.number(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment