Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Web Components Submodule
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ChEMBL
ChEMBL
Main Web Interface
Web Components Submodule
Compare revisions
908af8a7cbe8e364786c92533da196fa86d1e696 to fa9e83064b075cc6c70339b20f501a932877a05b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
chembl/chembl/main-web-interface/web-components-submodule
Select target project
No results found
fa9e83064b075cc6c70339b20f501a932877a05b
Select Git revision
Branches
glados
master
staging
Swap
Target
chembl/chembl/main-web-interface/web-components-submodule
Select target project
chembl/chembl/main-web-interface/web-components-submodule
1 result
908af8a7cbe8e364786c92533da196fa86d1e696
Select Git revision
Branches
glados
master
staging
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Eubopen search: use GET because backend now requires it
· fa9e8306
David Mendez
authored
2 years ago
fa9e8306
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
services/ESProxyService.js
+3
-4
3 additions, 4 deletions
services/ESProxyService.js
with
3 additions
and
4 deletions
services/ESProxyService.js
View file @
fa9e8306
...
...
@@ -92,10 +92,9 @@ export default {
)
},
getEubopenSearchParams
(
term
)
{
const
formData
=
new
FormData
()
formData
.
append
(
'
term
'
,
term
)
return
esProxyApiClient
.
post
(
`/eubopen/search/free_text`
,
formData
)
return
esProxyApiClient
.
get
(
`/eubopen/search/free_text/
${
encodeURIComponent
(
term
)}
`
)
},
getGenericData
(
dataPath
)
{
return
esProxyApiClient
.
get
(
dataPath
)
...
...
This diff is collapsed.
Click to expand it.