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
43db5359
Commit
43db5359
authored
Nov 22, 2018
by
David Hoksza
Browse files
promise resolve
parent
122e8657
Pipeline
#7586
passed with stages
in 1 minute and 16 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/js/index.js
View file @
43db5359
...
...
@@ -381,9 +381,9 @@ function initDrugBioEntities(){
const
promisses
=
drugNames
.
map
(
d
=>
queryMinervaApi
(
`projects/
${
minervaProxy
.
project
.
data
.
getProjectId
()}
/drugs:search?query=
${
d
}
`
).
then
(
function
(
x
)
{
return
x
;
return
Promise
.
resolve
(
x
)
;
},
function
()
{
return
undefined
;
return
Promise
.
resolve
(
undefined
)
;
}
)
);
...
...
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