Prevent default for linkAction (#10742) (#10743)

Signed-off-by: jolheiser <john.olheiser@gmail.com>
release/v1.11
John Olheiser 4 years ago committed by GitHub
parent 0158725387
commit 54ea58ddf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2738,7 +2738,8 @@ function showAddAllPopup() {
return false;
}
function linkAction() {
function linkAction(e) {
e.preventDefault();
const $this = $(this);
const redirect = $this.data('redirect');
$.post($this.data('url'), {

Loading…
Cancel
Save