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
5cc9904e
Commit
5cc9904e
authored
Jul 26, 2019
by
Piotr Gawron
Browse files
open link in new tab
parent
6091f258
Pipeline
#12115
passed with stage
in 8 minutes and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
5cc9904e
...
...
@@ -17,6 +17,7 @@ minerva (14.0.0~alpha.0) unstable; urgency=low
*
Small
improvement
:
overlay
name
is
obligatory
(#
698
)
*
Small
improvement
:
list
of
projects
in
admin
panel
contains
creation
date
(#
447
)
*
Small
improvement
:
links
in
list
of
publications
open
in
new
tab
(#
447
)
*
Small
improvement
:
target
gene
in
search
panel
contains
also
information
about
type
of
database
that
identifies
the
target
(#
66
)
*
Small
improvement
:
redundant
'references'
field
in
gene
variants
data
...
...
frontend-js/src/main/js/gui/leftPanel/PublicationListDialog.js
View file @
5cc9904e
...
...
@@ -102,7 +102,7 @@ PublicationListDialog.prototype._dataTableAjaxCall = function (data, callback) {
var
row
=
[];
var
submaps
=
{};
if
(
article
!==
null
&&
article
!==
undefined
)
{
row
[
0
]
=
"
<a href='
"
+
article
.
link
+
"
'>
"
+
article
.
id
+
"
</a>
"
;
row
[
0
]
=
"
<a href='
"
+
article
.
link
+
"
' target='#pubmed_
"
+
article
.
id
+
"
'>
"
+
article
.
id
+
"
</a>
"
;
row
[
1
]
=
article
.
title
;
row
[
2
]
=
article
.
authors
.
join
();
row
[
3
]
=
article
.
journal
;
...
...
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