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
2f7a2aac
Commit
2f7a2aac
authored
5 years ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
allow to reupload data overlay file without closing dialog
parent
5d252147
No related branches found
No related tags found
2 merge requests
!805
Merge 13.1.0 beta.1
,
!800
Resolve "reuploading of an overlay and incorrect error thrown"
Pipeline
#10538
canceled
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/AddOverlayDialog.js
+3
-1
3 additions, 1 deletion
frontend-js/src/main/js/gui/AddOverlayDialog.js
with
5 additions
and
1 deletion
CHANGELOG
+
2
−
0
View file @
2f7a2aac
...
...
@@ -9,6 +9,8 @@ minerva (12.3.1~beta.1) unstable; urgency=low
* Bug fix: invisible layer shouldn't be shown in the on th map (#813)
* Bug fix: list of availbale annotators is sorted alphabetically (#815)
* Bug fix: redirect url from export panel is fixed (#819)
* Bug fix: allow to reupload the same file without closing add overlay dialog
(#833)
* Bug fix: protein types are sorted properly in "Select valid annotations"
dialog (#815)
* Bug fix: if there is a description of (sub)map then it is available in
...
...
This diff is collapsed.
Click to expand it.
frontend-js/src/main/js/gui/AddOverlayDialog.js
+
3
−
1
View file @
2f7a2aac
...
...
@@ -94,7 +94,9 @@ AddOverlayDialog.prototype.createGui = function () {
name
:
"
overlay-file
"
});
fileInput
.
addEventListener
(
"
change
"
,
function
()
{
return
self
.
processFile
(
fileInput
.
files
[
0
]).
then
(
null
,
GuiConnector
.
alert
);
return
self
.
processFile
(
fileInput
.
files
[
0
]).
then
(
function
()
{
$
(
fileInput
).
val
(
""
);
}).
catch
(
GuiConnector
.
alert
);
},
false
);
content
.
appendChild
(
fileInput
);
content
.
appendChild
(
guiUtils
.
createNewLine
());
...
...
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