Skip to content
Snippets Groups Projects
Verified Commit e28c30d2 authored by Martin Weise's avatar Martin Weise
Browse files

Fixed

parent 131cf09a
Branches
Tags
5 merge requests!345Updated docs and endpoints:,!341Fixed mapping problem where UK and FK share columns they are inserted,!339Fixed mapping problem where UK and FK share columns they are inserted,!338Fixed mapping problem where UK and FK share columns they are inserted,!337Fixed
......@@ -19,7 +19,8 @@ author: Martin Weise
#### Changes
* Remove the Data Database Sidecar and replace it with Apache Spark 4.
* Remove the Data Database Sidecar and replace it with Apache Spark 4
in [#458](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/issues/458).
* Allow anonymous users to create subsets for public databases
in [#449](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/issues/449).
* Show file upload progress
......
......@@ -288,7 +288,7 @@ export const useIdentifierService = (): any => {
if (!data) {
return null
}
return data.doi !== null ? 'DOI' : 'URI'
return data.doi ? 'DOI' : 'URI'
}
function creatorToCreatorJsonLd(creator: CreatorDto) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment