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
d79e8db1
Commit
d79e8db1
authored
Apr 24, 2019
by
Piotr Gawron
Browse files
disable button after removing data overlay
parent
3f67e7b8
Pipeline
#9926
passed with stage
in 9 minutes and 8 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
d79e8db1
...
...
@@ -2,6 +2,8 @@ minerva (12.2.3) stable; urgency=medium
*
Bug
fix
:
sorting
of
entries
in
"Edit project->overlays"
dialog
fixed
(#
790
)
*
Bug
fix
:
searching
of
chemicals
stopped
working
due
to
expired
SSL
certificate
on
https
://
ctdbase
.
org
/
*
Bug
fix
:
remove
button
is
disabled
after
starting
removing
of
the
data
overlay
(#
791
)
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Wed
,
24
Apr
2019
17
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/gui/admin/EditProjectDialog.js
View file @
d79e8db1
...
...
@@ -435,6 +435,7 @@ EditProjectDialog.prototype._createOverlayTable = function () {
$
(
overlaysTable
).
on
(
"
click
"
,
"
[name='removeOverlay']
"
,
function
()
{
var
button
=
this
;
$
(
button
).
attr
(
"
disabled
"
,
true
);
return
self
.
removeOverlay
(
parseInt
(
$
(
button
).
attr
(
"
data
"
))).
then
(
null
,
GuiConnector
.
alert
);
});
...
...
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