import './link-to-compare-diff.css'; import React from 'dom-chef'; import select from 'select-dom'; import * as pageDetect from 'github-url-detection'; import features from '../feature-manager.js'; import {wrapAll} from '../helpers/dom-utils.js'; import selectHas from '../helpers/select-has.js'; function init(): void { const changedFilesSummary = selectHas('.Box li:has(.octicon-file-diff)')!; wrapAll( [...changedFilesSummary.children], , ); } void features.add(import.meta.url, { include: [ pageDetect.isCompare, ], exclude: [ () => select.exists('.tabnav'), // The commit list and compare diff are in two separate tabs ], deduplicate: 'has-rgh-inner', awaitDomReady: true, // DOM-based filter init, });