Commit 5d05b3d8 authored by Miguel Rincon's avatar Miguel Rincon

Fix breadcrumb click event handling

This change updates the target of the event so the correct href of the
clicked element is found.

Changelog: fixed
parent d7512e80
......@@ -82,7 +82,7 @@ export default {
});
this.$root.$on('clicked::link', (e) => {
window.location = e.target.href;
window.location = e.currentTarget.href;
});
},
......
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