Skip to content

Commit a81450d

Browse files
committed
fix: update afp_otherantibodies processing to split string into array
1 parent 30de1e2 commit a81450d

File tree

1 file changed

+1
-1
lines changed
  • src/frontend/curator_dashboard/src/redux

1 file changed

+1
-1
lines changed

src/frontend/curator_dashboard/src/redux/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export const fetchOtherData = (paperID) => {
168168
}
169169
retData.afp_otherantibodies = data.data.afp_otherantibodies;
170170
if (retData.afp_otherantibodies !== '') {
171-
retData.afp_otherantibodies = extractEntitiesFromTfpString(retData.afp_otherantibodies, "");
171+
retData.afp_otherantibodies = retData.afp_otherantibodies.split(" | ");
172172
} else {
173173
retData.afp_otherantibodies = [];
174174
}

0 commit comments

Comments
 (0)