We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8faff commit ae82510Copy full SHA for ae82510
lib/core/base/rule.js
@@ -594,13 +594,13 @@ Rule.prototype.after = function after(result, options) {
594
});
595
596
// Sub menu nodes modifications
597
- const data = result.nodes.filter((r) => !r.all[0].result);
598
- data.forEach((r) => {
+ const data = result.nodes.filter(r => !r.all[0].result);
+ data.forEach(r => {
599
const node = r.all[0].data;
600
r.node = new axe.utils.DqElement(node);
601
602
603
- result.nodes.forEach((r) => {
+ result.nodes.forEach(r => {
604
delete r.all[0].data;
605
606
0 commit comments