Skip to content
Snippets Groups Projects
Commit 63c764b1 authored by Johannes Buechele's avatar Johannes Buechele
Browse files

fixed creator mapping

parent 7ad939b9
No related branches found
No related tags found
No related merge requests found
......@@ -3,12 +3,12 @@ import React from "react";
const WorkCreatorFormView = (props) => {
var creator = {
firstName: props.creator.firstName,
lastName: props.creator.lastName,
email: props.creator.email,
pseudonym: props.creator.pseudonym,
percentage: props.creator.percentage,
url: props.creator.url,
firstName: props?.creator?.author.firstName,
lastName: props?.creator?.author.lastName,
email: props?.creator?.author.email,
pseudonym: props?.creator?.author.pseudonym,
percentage: props?.creator?.percentage,
url: props?.creator?.author.url,
};
function setNewVal(value, newValue) {
......
const REACT_APP_API =
window.REACT_APP_API || "http://localhost:8080/api-service";
window.REACT_APP_API || "https://api.dev.fairregister.net/api-service";
const KEYCLOAK_CLIENT_ID =
window.KEYCLOAK_CLIENT_ID || "fairregister-development";
......
......@@ -258,7 +258,7 @@
"LicenseInformation": "Lizenz Information",
"License": "Lizenz",
"DALICCLizenz": "DALICC-Lizenz",
"Participant": "Beteiligte",
"Participant": "Urheber oder Mitwirkende",
"Authors": "Urheber:innen",
"DeleteAuthor": "Urheber:in löschen",
"AddAuthor": "Urheber:in hinzufügen",
......
......@@ -258,7 +258,7 @@
"LicenseInformation": "License Information",
"License": "License",
"DALICCLizenz": "DALICC-License",
"Participant": "Participant",
"Participant": "Creator or Contributors",
"Authors": "Authors",
"DeleteAuthor": "delete author",
"AddAuthor": "add author",
......
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