Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feature/3672_autoc…
Browse files Browse the repository at this point in the history
…heck_none_value
  • Loading branch information
philipkcl committed Apr 11, 2024
2 parents 3e21830 + 3727f21 commit 8df206f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion portality/settings.py
Expand Up @@ -9,7 +9,7 @@
# Application Version information
# ~~->API:Feature~~

DOAJ_VERSION = "6.6.8"
DOAJ_VERSION = "6.6.9"
API_VERSION = "3.0.1"

######################################
Expand Down
4 changes: 3 additions & 1 deletion portality/static/js/doaj.fieldrender.edges.js
Expand Up @@ -3506,7 +3506,9 @@ $.extend(true, doaj, {
if (dir === undefined) {
dir = "";
}
dir = " " + dir;
if (dir !== "") {
dir = " " + dir;
}
sortOptions += '<option value="' + field + '' + dir + '">' + edges.escapeHtml(display) + '</option>';
}

Expand Down
Expand Up @@ -5,8 +5,7 @@
{% import "application_form/_application_warning_msg.html" as _msg %}
{% if obj and (obj.es_type == 'journal' and obj.is_in_doaj()) %}
{{ _msg.build_journal_withdrawn_deleted_msg(obj) }}
<a class="button button--tertiary" href="{{ url_for('doaj.toc', identifier=obj.id) }}">See this
journal in DOAJ</a>
<a class="button button--tertiary" href="{{ url_for('doaj.toc', identifier=obj.id) }}" target="_blank">See this journal in DOAJ</a>
{% endif %}


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name='doaj',
version='6.6.8',
version='6.6.9',
packages=find_packages(),
install_requires=[
"awscli==1.20.50",
Expand Down

0 comments on commit 8df206f

Please sign in to comment.