Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
25876421
Commit
25876421
authored
Apr 05, 2019
by
Piotr Gawron
Browse files
progress info added for project upload
parent
6d78051a
Pipeline
#9684
failed with stage
in 10 minutes
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
25876421
...
...
@@ -20,6 +20,8 @@ minerva (12.3.0~alpha.0) unstable; urgency=low
whitespace
,
"_"
used
as
separator
(#
596
)
*
Small
improvement
:
list
of
references
in
drug
panel
contains
PUBMED
prefix
(#
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
API
(#
732
)
*
Small
improvement
:
reactant
/
product
/
modifier
specific
colors
are
parsed
...
...
frontend-js/src/main/js/gui/admin/MapsAdminPanel.js
View file @
25876421
...
...
@@ -221,6 +221,9 @@ MapsAdminPanel.prototype.projectToTableRow = function (project, row, user) {
formattedProjectId
=
projectId
;
}
var
status
=
project
.
getStatus
();
if
(
project
.
getStatus
().
toLowerCase
()
!==
"
ok
"
&&
project
.
getStatus
().
toLowerCase
()
!==
"
failure
"
)
{
status
+=
'
(
'
+
project
.
getProgress
().
toFixed
(
2
)
+
'
%)
'
;
}
if
(
project
.
hasErrors
())
{
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>
"
+
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment