6.25.4: Стиль остатка как у подзадач
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 38s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
poignatov
2026-03-19 20:36:22 +03:00
parent 837ddbe4ed
commit 87126a480a
2 changed files with 3 additions and 3 deletions

View File

@@ -387,7 +387,7 @@ function PurchaseScreen({ onNavigate, purchaseConfigId, taskId, taskName }) {
<div className="task-name">
{item.name}
{item.estimated_remaining > 0 && (
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
<span className="task-subtasks-count">
({Math.round(item.estimated_remaining * 10) / 10})
</span>
)}

View File

@@ -729,7 +729,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
<div className="task-name">
{item.name}
{item.estimated_remaining > 0 && (
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
<span className="task-subtasks-count">
({Math.round(item.estimated_remaining * 10) / 10})
</span>
)}
@@ -800,7 +800,7 @@ function ShoppingList({ onNavigate, refreshTrigger = 0, isActive = false, initia
<div className="task-name">
{item.name}
{item.estimated_remaining > 0 && (
<span style={{ color: '#9ca3af', fontSize: '0.8em', marginLeft: '6px' }}>
<span className="task-subtasks-count">
({Math.round(item.estimated_remaining * 10) / 10})
</span>
)}