fix: убрать текст 'Выполнение...' из кнопки выполнения задачи с длительностью
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 29s

This commit is contained in:
poignatov
2026-01-06 14:38:16 +03:00
parent a7bc912db3
commit 28d8148665
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "play-life-web",
"version": "3.0.0",
"version": "3.0.1",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -180,7 +180,7 @@ function TaskDetail({ taskId, onClose, onRefresh, onTaskCompleted }) {
disabled={isCompleting}
className="complete-button"
>
{isCompleting ? 'Выполнение...' : '✓'}
</button>
)}
</div>