viberadar 0.3.121 → 0.3.122
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/dashboard.html +4 -2
- package/package.json +1 -1
package/dist/ui/dashboard.html
CHANGED
|
@@ -4614,8 +4614,10 @@ async function renderDocFeatureDetail(c) {
|
|
|
4614
4614
|
const versionsHtml = f.docVersions && f.docVersions.length > 0
|
|
4615
4615
|
? `<div style="font-size:11px;color:var(--muted);margin-top:6px">Версии: ${f.docVersions.map((v, i) => `<span style="${i === f.docVersions.length - 1 ? 'color:var(--text)' : ''}">${v.split('/').pop()}</span>`).join(' · ')}</div>`
|
|
4616
4616
|
: '';
|
|
4617
|
-
const
|
|
4618
|
-
|
|
4617
|
+
const featResult = D.features?.find(x => x.key === drillFeatureKey);
|
|
4618
|
+
const featRoutes = featResult?.routes;
|
|
4619
|
+
const screenshotHintHtml = featRoutes && featRoutes.length > 0
|
|
4620
|
+
? `<div style="margin-top:6px;font-size:12px;color:var(--muted)">📸 Перед запуском агента будут автоматически захвачены скриншоты (${featRoutes.length} маршрут${featRoutes.length === 1 ? '' : featRoutes.length < 5 ? 'а' : 'ов'}): ${featRoutes.join(', ')}</div>`
|
|
4619
4621
|
: '';
|
|
4620
4622
|
const detailActionsHtml = `
|
|
4621
4623
|
<div class="doc-detail-actions">
|