Commit e5e3a9a3 authored by Regis's avatar Regis

handle actions and builds

parent 0db574aa
...@@ -40,7 +40,16 @@ ...@@ -40,7 +40,16 @@
}); });
}, },
keepGraph(e) { keepGraph(e) {
e.stopPropagation(); const { target } = e;
if (~target.className.indexOf('js-ci-action-icon')) return null;
if (
target.parentElement &&
~target.parentElement.className.indexOf('js-ci-action-icon')
) return null;
return e.stopPropagation();
}, },
}, },
computed: { computed: {
......
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