We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b303e22 commit f7912faCopy full SHA for f7912fa
src/frontend/curator_dashboard/src/redux/actions.js
@@ -172,6 +172,12 @@ export const fetchOtherData = (paperID) => {
172
} else {
173
retData.afp_otherantibodies = [];
174
}
175
+ retData.afp_newspecies = data.data.afp_newspecies;
176
+ if (retData.afp_newspecies !== '') {
177
+ retData.afp_newspecies = retData.afp_newspecies.split(" | ");
178
+ } else {
179
+ retData.afp_newspecies = [];
180
+ }
181
resolve(retData);
182
}).catch((err) => {
183
reject(err);
0 commit comments