Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed async download
  • Loading branch information
temi committed Nov 11, 2021
1 parent 63f24ee commit 8ee7768
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
plugins {
id 'war'
}
version "5.2.3"
version "5.2.4-SNAPSHOT"

group "au.org.ala"

Expand Down
2 changes: 1 addition & 1 deletion grails-app/assets/javascripts/activity.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ var ActivitiesAndRecordsViewModel = function (placeHolder, view, user, ignoreMap
var elem = event.target ? event.target : event.srcElement;
var asyncDownloadThreshold = DEFAULT_EMAIL_DOWNLOAD_THRESHOLD;
if (elem) {
asyncDownloadThreshold = $(elem).attr("dataemailthreshold");
asyncDownloadThreshold = $(elem).data("email-threshold");
}

var url = constructQueryUrl(fcConfig.downloadProjectDataUrl, 0, false);
Expand Down

0 comments on commit 8ee7768

Please sign in to comment.