From 819193c6ad9b3eba641dbf47d199b2e9a9bce3b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Tue, 7 Jul 2026 16:43:47 +0400 Subject: [PATCH] fix: drhider PDF indicator short (*.docx) v1.13 --- site/templates/drhider.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/templates/drhider.html b/site/templates/drhider.html index c372ab7..922746a 100644 --- a/site/templates/drhider.html +++ b/site/templates/drhider.html @@ -84,7 +84,7 @@ Сверка договоров | DrHider - v1.12 + v1.13 @@ -207,7 +207,7 @@ function render() { LIST.innerHTML = files.map((f,i) => { let display = esc(f.name); if (f.name.toLowerCase().endsWith('.pdf')) { - display += ' → ' + esc(f.name.slice(0,-4)) + '.docx'; + display += ' → *.docx'; } return `
${display}${fmt(f.size)}×
`; }).join('');