From e6af196cd9e7c4e83b0c3b02d01dbbd23eeb4aec Mon Sep 17 00:00:00 2001 From: Nastya Date: Thu, 18 Sep 2025 23:31:31 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B9?= =?UTF-8?q?=D0=BA=D0=B0=20=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B8=20?= =?UTF-8?q?=D0=BA=D0=B2=D0=B8=D0=B7=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + src/pages/startPage/StartPageSettings.tsx | 96 ++++++++++++++++++++++- 2 files changed, 96 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c326e2..b986a9bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +1.0.5 _ 2025-09-18 _ особые условия для вывода картинок 1.0.4 _ 2025-09-14 _ особые условия для вывода картинок 1.0.3 _ 2025-09-12 _ среднее время не учитывает нули 1.0.2 _ 2025-09-07 _ добавлена автозапись в стейджинг diff --git a/src/pages/startPage/StartPageSettings.tsx b/src/pages/startPage/StartPageSettings.tsx index 2d203520..effea858 100755 --- a/src/pages/startPage/StartPageSettings.tsx +++ b/src/pages/startPage/StartPageSettings.tsx @@ -893,7 +893,101 @@ export default function StartPageSettings() { Запретить шаг назад - {!isSmallMonitor &&} + + + { + updateQuiz(quiz.id, (quiz) => { + quiz.config.backBlocked = e.target.checked; + }); + }} + /> + + + Включить таймер вопросов + + + + + + updateQuiz(quiz.id, (quiz) => { + quiz.config.info.law = e.target.value; + }) + } + sx={{ + width: "51px", + height: "48px" + }} + /> + + мин. + + + + + + + updateQuiz(quiz.id, (quiz) => { + quiz.config.info.law = e.target.value; + }) + } + sx={{ + width: "51px", + height: "48px" + }} + /> + + сек. + + + + + + {!isSmallMonitor && } )}