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
Commits
4a46cd79
Commit
4a46cd79
authored
1 year ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
loading icon in export panel added
parent
c0b93e17
No related branches found
No related tags found
3 merge requests
!1612
Resolve "allow fetching data by id"
,
!1600
Merge 16.3.0
,
!1599
Resolve "Re-calculate number of publications displayed in Info tab"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+1
-0
1 addition, 0 deletions
CHANGELOG
frontend-js/src/main/js/gui/export/ElementExportPanel.js
+3
-1
3 additions, 1 deletion
frontend-js/src/main/js/gui/export/ElementExportPanel.js
with
4 additions
and
1 deletion
CHANGELOG
+
1
−
0
View file @
4a46cd79
...
...
@@ -7,6 +7,7 @@ minerva (16.3.0) unstable; urgency=medium
Identifier (like in pathway WP2118)
* Small improvement: import from GPML parse information about Reactome
Pathway Identifier (like in pathway WP3165)
* Small improvement: LOADING icon when initializing export TAB added (#1839)
* Small improvement: allow to login to DAPI by press key Enter (#1853)
* Small improvement: link to home of API-docs in API-docs (#1779)
* Small improvement: provide server-side Stack Trace when reporting error
...
...
This diff is collapsed.
Click to expand it.
frontend-js/src/main/js/gui/export/ElementExportPanel.js
+
3
−
1
View file @
4a46cd79
...
...
@@ -8,6 +8,7 @@ var ValidationError = require('../../ValidationError');
var
IdentifiedElement
=
require
(
'
../../map/data/IdentifiedElement
'
);
var
Functions
=
require
(
'
../../Functions
'
);
var
GuiConnector
=
require
(
'
../../GuiConnector
'
);
// noinspection JSUnusedLocalSymbols
var
logger
=
require
(
'
../../logger
'
);
...
...
@@ -47,6 +48,7 @@ ElementExportPanel.prototype.init = function () {
submapDiv
.
appendChild
(
self
.
_createSelectSubmapDiv
(
self
.
getProject
().
getModels
()));
element
.
appendChild
(
submapDiv
);
element
.
appendChild
(
self
.
_createSelectColumnDiv
(
self
.
getAllColumns
()));
GuiConnector
.
showProcessing
(
"
LOADING...
"
);
return
self
.
getServerConnector
().
getProjectStatistics
(
self
.
getProject
().
getProjectId
()).
then
(
function
(
statistics
)
{
return
self
.
_createMiriamTypeDiv
(
statistics
.
getElementAnnotations
());
}).
then
(
function
(
div
)
{
...
...
@@ -60,7 +62,7 @@ ElementExportPanel.prototype.init = function () {
element
.
appendChild
(
self
.
_createDownloadButton
());
}).
then
(
function
()
{
$
(
window
).
trigger
(
'
resize
'
);
});
})
.
finally
(
GuiConnector
.
hideProcessing
)
;
};
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment