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
25876421
Commit
25876421
authored
5 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
progress info added for project upload
parent
6d78051a
No related branches found
No related tags found
1 merge request
!736
Resolve "automatic Refresh - it would be nice to have"
Pipeline
#9684
failed
5 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+2
-0
2 additions, 0 deletions
CHANGELOG
frontend-js/src/main/js/gui/admin/MapsAdminPanel.js
+3
-0
3 additions, 0 deletions
frontend-js/src/main/js/gui/admin/MapsAdminPanel.js
with
5 additions
and
0 deletions
CHANGELOG
+
2
−
0
View file @
25876421
...
@@ -20,6 +20,8 @@ minerva (12.3.0~alpha.0) unstable; urgency=low
...
@@ -20,6 +20,8 @@ minerva (12.3.0~alpha.0) unstable; urgency=low
whitespace, "_" used as separator (#596)
whitespace, "_" used as separator (#596)
* Small improvement: list of references in drug panel contains PUBMED prefix
* Small improvement: list of references in drug panel contains PUBMED prefix
(#666)
(#666)
* Small improvement: list of projects is aut refreshed every 5 seconds if at
least one of the project is uploading/removing (#610)
* Small improvement: passwords to email account and ldap are not sent over
* Small improvement: passwords to email account and ldap are not sent over
API (#732)
API (#732)
* Small improvement: reactant/product/modifier specific colors are parsed
* Small improvement: reactant/product/modifier specific colors are parsed
...
...
This diff is collapsed.
Click to expand it.
frontend-js/src/main/js/gui/admin/MapsAdminPanel.js
+
3
−
0
View file @
25876421
...
@@ -221,6 +221,9 @@ MapsAdminPanel.prototype.projectToTableRow = function (project, row, user) {
...
@@ -221,6 +221,9 @@ MapsAdminPanel.prototype.projectToTableRow = function (project, row, user) {
formattedProjectId
=
projectId
;
formattedProjectId
=
projectId
;
}
}
var
status
=
project
.
getStatus
();
var
status
=
project
.
getStatus
();
if
(
project
.
getStatus
().
toLowerCase
()
!==
"
ok
"
&&
project
.
getStatus
().
toLowerCase
()
!==
"
failure
"
)
{
status
+=
'
(
'
+
project
.
getProgress
().
toFixed
(
2
)
+
'
%)
'
;
}
if
(
project
.
hasErrors
())
{
if
(
project
.
hasErrors
())
{
status
+=
"
<a name='showErrors' href='#' data='
"
+
project
.
getProjectId
()
+
"
'>
"
+
status
+=
"
<a name='showErrors' href='#' data='
"
+
project
.
getProjectId
()
+
"
'>
"
+
"
<i class='fa fa-exclamation-triangle' style='font-size:18px; font-weight:400; padding-right:10px;color:red'></i>
"
+
"
<i class='fa fa-exclamation-triangle' style='font-size:18px; font-weight:400; padding-right:10px;color:red'></i>
"
+
...
...
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