Commit 9d0ccc54 authored by kushalpandya's avatar kushalpandya

Fix event listener params

parent 9adecb5b
......@@ -47,7 +47,10 @@ export default class ProtectedTagAccessDropdown {
onHide();
}
},
clicked: (item, $el, e) => {
clicked: (options) => {
const { $el, e } = options;
const item = options.selectedObj;
e.preventDefault();
if ($el.is('.is-active')) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment