Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Merge requests
!1340
issue with genomic data overlay for few genomes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
issue with genomic data overlay for few genomes
1546-genomic-issue
into
devel_16.0.x
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Piotr Gawron
requested to merge
1546-genomic-issue
into
devel_16.0.x
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
Closes
#1546 (closed)
0
0
Merge request reports
Compare
devel_16.0.x
devel_16.0.x (base)
and
latest version
latest version
177b132a
1 commit,
3 years ago
2 files
+
6
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
frontend-js/src/main/js/map/window/AliasInfoWindow.js
+
4
−
2
Options
@@ -51,7 +51,7 @@ function AliasInfoWindow(params) {
};
var
dbOverlaySearchChanged
=
function
(
arg
)
{
return
self
.
update
().
then
(
function
(){
return
self
.
update
().
then
(
function
()
{
if
(
arg
.
object
instanceof
ChemicalDbOverlay
)
{
$
(
"
a:contains(chemical)
"
,
self
.
getContent
()).
click
();
}
else
if
(
arg
.
object
instanceof
DrugDbOverlay
)
{
@@ -438,7 +438,9 @@ AliasInfoWindow.prototype.createGenomicDiv = function (params) {
return
Promise
.
all
(
promises
).
then
(
function
(
result
)
{
promises
=
[];
result
.
forEach
(
function
(
overlayEntries
)
{
overlaysData
=
overlaysData
.
concat
(
overlayEntries
);
if
(
overlayEntries
!==
undefined
)
{
overlaysData
=
overlaysData
.
concat
(
overlayEntries
);
}
});
return
Promise
.
all
(
promises
);
}).
then
(
function
()
{
Loading