From 2de5c1cb817262d0fee23faedcd3f0475fd7ad42 Mon Sep 17 00:00:00 2001 From: Nikolay Tatarinov Date: Tue, 3 Mar 2026 00:12:04 +0300 Subject: [PATCH] fix: update current duty display text for improved clarity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed the displayed text for current duty from "Текущее дежурство" to "Сейчас дежурит" to enhance user understanding. - This update aligns with the recent efforts to unify language handling across the application. --- webapp/js/currentDuty.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/js/currentDuty.test.js b/webapp/js/currentDuty.test.js index ee64efe..42425ba 100644 --- a/webapp/js/currentDuty.test.js +++ b/webapp/js/currentDuty.test.js @@ -110,7 +110,7 @@ describe("currentDuty", () => { }; const html = renderCurrentDutyContent(duty, "ru"); expect(html).toContain("current-duty-live-dot"); - expect(html).toContain("Текущее дежурство"); + expect(html).toContain("Сейчас дежурит"); expect(html).toContain("Иванов Иван"); expect(html).toContain("Смена"); expect(html).toContain("current-duty-remaining");