diff --git a/public/js/action-list.js b/public/js/action-list.js index afa26192b..2a586b1ba 100644 --- a/public/js/action-list.js +++ b/public/js/action-list.js @@ -418,7 +418,7 @@ url = this.createMultiSelectUrl(activeItems); } else { let anchor = activeItems[0].querySelector('[href]'); - url = anchor ? anchor.href : null; + url = anchor ? anchor.getAttribute('href') : null; } }