File tree Expand file tree Collapse file tree
sections/create-dataset/dataset-type-select Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export interface DatasetType {
22 id : number
33 name : string
4+ description : string
45 linkedMetadataBlocks ?: string [ ]
56 availableLicenses ?: string [ ]
67}
Original file line number Diff line number Diff line change @@ -79,12 +79,7 @@ export const DatasetTypeSelect = ({
7979 < span >
8080 < strong className = "text-capitalize" > { dt . name } </ strong >
8181 < br />
82- < span className = "small text-muted" >
83- { dt . name === 'dataset' &&
84- 'A traditional dataset. May include code. Maps to https://schema.org/Dataset' }
85- { dt . name === 'review' &&
86- 'A review of a research object such as a dataset. Maps to https://schema.org/CriticReview' }
87- </ span >
82+ < span className = "small text-muted" > { dt . description } </ span >
8883 </ span >
8984 </ Card . Body >
9085 </ Card >
You can’t perform that action at this time.
0 commit comments