-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/DOI-keywords-and-integration-tests #715
Conversation
c2f570b
to
53241d2
Compare
it would be nice to update changelog |
@blankdots I understand that we can only submit one |
are you referring to XML or form submissions? from what I see in integration tests in backend we are able to do |
For me it happens in both form and XML. Other objects work fine but with |
Yes, that is correct i think "accessionId", "publishDate", "dateCreated" was never possible to update any of them previously as well, it is good not to include them in the Similar fields cannot be updated for XML as well. |
Yes, an example of updating a submitted As of now I have checked again, the error only happens with updating |
@hannyle yes, so you should not send |
the same fields should be omitted for |
You're right, |
9854ece
to
bf8f8a3
Compare
bf8f8a3
to
c9c13cd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The UI is work in progress and it shows, but that is understandable as we transition. The data looks good and seems to be registered correctly in the backend
Looks good to me. Keywords behave as supposed and tests looks comprehensive. |
Description
Keywords
is a mandatory field in DOI form and users can type and save as manykeywords
as possible. Keywords are displayed in the form of tags so after typing some text, users should press,
orEnter
to mark the keyword as a tag.Study
object, nowStudy
form has a mandatoryStudy Abstract
field and we can only submit oneStudy
object.Related issues
Solves #628 and #695
Type of change
Changes Made
WizardJSONSchemaParser.tsx
, MUI Chip component was used to renderKeywords
field. A hiddeninput
is used to register value to the form and MUI Textfield is used to receive input text from user.Study Abstraction
when filling a Study form and only one Study form is submitted per time.Dataset
object is mandatorily submitted before publishing a submissionDOI
form is also saved before publishing a submission. A Cypress commandsaveDoiForm
is added to be reused.Testing