6.25.4: Стиль остатка как у подзадач
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 38s
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:
@@ -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>
|
||||
)}
|
||||
|
||||
@@ -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>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user