Merged in release/2022-05-13 (pull request #482)

release/2022-05-13

Approved-by: Patrick Fic
This commit is contained in:
Patrick Fic
2022-05-17 18:24:12 +00:00
2 changed files with 4 additions and 8 deletions

View File

@@ -72,13 +72,9 @@ export function NoteUpsertModalContainer({
toggleModalVisible(); toggleModalVisible();
} else { } else {
logImEXEvent("job_note_insert"); logImEXEvent("job_note_insert");
const AdditionalNoteInserts = Object.keys(relatedros).filter( const AdditionalNoteInserts = relatedros
(key) => relatedros[key] ? Object.keys(relatedros).filter((key) => relatedros[key])
); : [];
console.log(
"🚀 ~ file: note-upsert-modal.container.jsx ~ line 78 ~ handleFinish ~ AdditionalNoteInserts",
AdditionalNoteInserts
);
await insertNote({ await insertNote({
variables: { variables: {

View File

@@ -4,7 +4,7 @@
"license": "UNLICENSED", "license": "UNLICENSED",
"engines": { "engines": {
"node": ">=16.0.0", "node": ">=16.0.0",
"npm": ">=7.0.0" "npm": ">=8.0.0"
}, },
"scripts": { "scripts": {
"setup": "yarn && cd client && yarn", "setup": "yarn && cd client && yarn",