Skip to content

Commit

Permalink
Merge branch 'hotfix/20240403_1301_issue3847_relevance_search'
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Eardley committed Apr 9, 2024
2 parents 62293d4 + 62bdb4f commit 1e32060
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion portality/settings.py
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
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 1e32060

Please sign in to comment.