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

Merge branch '459-ui-bug-displaying-doi-when-there-is-none' into 'dev'

Fixed

See merge request !337
parents 131cf09a e28c30d2
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 ...@@ -19,7 +19,8 @@ author: Martin Weise
#### Changes #### 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 * Allow anonymous users to create subsets for public databases
in [#449](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/issues/449). in [#449](https://gitlab.phaidra.org/fair-data-austria-db-repository/fda-services/-/issues/449).
* Show file upload progress * Show file upload progress
......
...@@ -288,7 +288,7 @@ export const useIdentifierService = (): any => { ...@@ -288,7 +288,7 @@ export const useIdentifierService = (): any => {
if (!data) { if (!data) {
return null return null
} }
return data.doi !== null ? 'DOI' : 'URI' return data.doi ? 'DOI' : 'URI'
} }
function creatorToCreatorJsonLd(creator: CreatorDto) { 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