diff options
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index cd13372b42..76e006e51d 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -2720,7 +2720,8 @@ function showAddAllPopup() { return false; } -function linkAction() { +function linkAction(e) { + e.preventDefault(); const $this = $(this); const redirect = $this.data('redirect'); $.post($this.data('url'), { |