From 3199ca957a1de212effac50a646ecf1141d2b58a Mon Sep 17 00:00:00 2001
From: Jaap Jansma <jaap.jansma@civicoop.org>
Date: Tue, 14 Jan 2025 17:44:24 +0100
Subject: [PATCH] Fixed issue with clicking export button

---
 CHANGELOG.md                                                 | 4 +++-
 info.xml                                                     | 4 ++--
 templates/CRM/DataprocessorSearch/Form/ResultsJavascript.tpl | 2 +-
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 193dde74..1c27eebb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,6 @@
-# Version 1.117 (not yet released)
+# Version 1.117
+
+* Fixed issue with clicking export button
 
 # Version 1.116
 
diff --git a/info.xml b/info.xml
index 01fae4c8..d57c5953 100644
--- a/info.xml
+++ b/info.xml
@@ -14,8 +14,8 @@
     <url desc="Documentation">https://lab.civicrm.org/extensions/dataprocessor/blob/master/README.md</url>
     <url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
   </urls>
-  <releaseDate>2024-12-20</releaseDate>
-  <version>1.117-dev</version>
+  <releaseDate>2025-01-14</releaseDate>
+  <version>1.117</version>
   <develStage>stable</develStage>
   <compatibility>
     <ver>5.37</ver>
diff --git a/templates/CRM/DataprocessorSearch/Form/ResultsJavascript.tpl b/templates/CRM/DataprocessorSearch/Form/ResultsJavascript.tpl
index 39f72881..1cc4c79a 100644
--- a/templates/CRM/DataprocessorSearch/Form/ResultsJavascript.tpl
+++ b/templates/CRM/DataprocessorSearch/Form/ResultsJavascript.tpl
@@ -8,7 +8,7 @@
       if (selectedIds.length > 0) {
         $('#mark_x_' + selectedIds.join(',#mark_x_') + ',input[name=radio_ts][value=ts_sel]').trigger('click');
       }
-      $('.crm-search-tasks .action-links .action-link .other-output-button').on('click', function() {
+      $('.crm-search-tasks .action-link .other-output-button').on('click', function() {
         var output_id = $(this).data('output-id');
         var $form = $(this).closest('form');
         $form.find('input[name=export_id]').val(output_id);
-- 
GitLab