Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
plugins
drug-reactions
Commits
122e8657
Commit
122e8657
authored
Nov 22, 2018
by
David Hoksza
Browse files
catch -> fail callback
parent
d8da48ea
Pipeline
#7585
passed with stages
in 1 minute and 13 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/js/index.js
View file @
122e8657
...
...
@@ -379,8 +379,13 @@ function initDrugBioEntities(){
drugNames
=
getDrugs
(
globals
.
adrData
);
const
promisses
=
drugNames
.
map
(
d
=>
queryMinervaApi
(
`projects/
${
minervaProxy
.
project
.
data
.
getProjectId
()}
/drugs:search?query=
${
d
}
`
)
.
catch
(
error
=>
{
return
undefined
;
})
queryMinervaApi
(
`projects/
${
minervaProxy
.
project
.
data
.
getProjectId
()}
/drugs:search?query=
${
d
}
`
).
then
(
function
(
x
)
{
return
x
;
},
function
()
{
return
undefined
;
}
)
);
return
Promise
.
all
(
promisses
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment