We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27654ce commit fa05c51Copy full SHA for fa05c51
1 file changed
output-tab.js
@@ -2237,6 +2237,12 @@ function renderSubNav(actId) {
2237
? ''
2238
: tabs.map((n) => `<button class="tab-btn" data-tab="${n}">${TAB_LABELS[n]}</button>`).join('');
2239
2240
+ if (actId === 'deeper') {
2241
+ sub.insertAdjacentHTML('afterbegin',
2242
+ `<button class="tab-menu-run" id="run-all-lenses">▸ Run all lenses ` +
2243
+ `<span id="lens-progress" style="font:500 10px/1 ui-monospace,monospace;opacity:.7;margin-left:4px"></span></button>`);
2244
+ }
2245
+
2246
// Mark scan buttons that have an explainer with a subtle ⓘ (per-render, so
2247
// freshly-rendered subnav buttons get one; the tip listeners in initScanTips
2248
// delegate from #act-subnav and survive this re-render).
0 commit comments