6.8.2: Перестановка галочки и инпута объёма
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m6s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
poignatov
2026-03-10 17:50:55 +03:00
parent ebd1398a81
commit eb5e5a5476
3 changed files with 15 additions and 15 deletions

View File

@@ -1 +1 @@
6.8.1
6.8.2

View File

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

View File

@@ -170,6 +170,19 @@ function ShoppingItemDetail({ itemId, onClose, onRefresh, onItemCompleted, onNav
</div>
<div className="shopping-item-complete-row">
<button
onClick={handleComplete}
disabled={isCompleting}
className="shopping-item-complete-button"
>
{isCompleting ? (
<div className="shopping-item-complete-spinner"></div>
) : (
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
)}
</button>
<div className="progression-input-wrapper">
<input
type="number"
@@ -204,19 +217,6 @@ function ShoppingItemDetail({ itemId, onClose, onRefresh, onItemCompleted, onNav
</button>
</div>
</div>
<button
onClick={handleComplete}
disabled={isCompleting}
className="shopping-item-complete-button"
>
{isCompleting ? (
<div className="shopping-item-complete-spinner"></div>
) : (
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" strokeLinejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
)}
</button>
</div>
</>
)}