Skip to content
Snippets Groups Projects
Commit c48e1401 authored by jaapjansma's avatar jaapjansma
Browse files

fixed bug with export data processor

parent 419e7256
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,12 @@ ...@@ -12,8 +12,12 @@
var output_id = $(this).data('output-id'); var output_id = $(this).data('output-id');
$('input[name=export_id]').val(output_id); $('input[name=export_id]').val(output_id);
$('form').submit(); $('form').submit();
$('input[name=export_id]').val('');
return false; return false;
}); });
$('.crm-form-submit').on('click', function() {
$('input[name=export_id]').val('');
})
}); });
{/literal} {/literal}
</script> </script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment