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
b30d073d
Commit
b30d073d
authored
Aug 28, 2019
by
Piotr Gawron
Browse files
glyph tab
parent
a97a66fa
Pipeline
#13278
passed with stage
in 12 minutes and 39 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
b30d073d
...
...
@@ -13,6 +13,8 @@ minerva (14.0.0~beta.0) unstable; urgency=low
* Small improvement: information about person who uploaded project is visible
in list of projects (#927)
* Small improvement: user role introduced in edit user dialog (#924)
* Small improvement: tab with list of glyps is available when adding project
with glyphs (#925)
* Bug fix: work on FF Private Window mode could cause logout or raise an
error on when opening new tab with minerva (#892)
* Bug fix: fetching list of miRnas resulted sometimes in "Internal Server
...
...
frontend-js/src/main/js/gui/admin/AddProjectDialog.js
View file @
b30d073d
...
...
@@ -80,7 +80,6 @@ AddProjectDialog.prototype.createGui = function () {
content
:
self
.
createOverviewImagesTabContent
(),
disabled
:
true
});
};
/**
...
...
@@ -573,7 +572,7 @@ AddProjectDialog.prototype._createGlyphsTable = function () {
var
data
=
[];
for
(
var
i
=
0
;
i
<
entries
.
length
;
i
++
)
{
var
entry
=
entries
[
i
];
if
(
entry
.
getType
()
===
"
GLYPH
S
"
)
{
if
(
entry
.
getType
()
===
"
GLYPH
"
)
{
var
row
=
[];
row
[
0
]
=
entry
.
getFilename
();
data
.
push
(
row
);
...
...
@@ -1366,7 +1365,7 @@ AddProjectDialog.prototype.setZipFileContent = function (file) {
images
++
;
}
else
if
(
entry
.
getType
()
===
'
OVERLAY
'
)
{
overlays
++
;
}
else
if
(
entry
.
getType
()
===
'
GLYPH
S
'
)
{
}
else
if
(
entry
.
getType
()
===
'
GLYPH
'
)
{
glyphs
++
;
}
}
...
...
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