6.25.2: Выравнивание текста в селекторе доски
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m7s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
poignatov
2026-03-19 20:22:06 +03:00
parent 84b5aa9390
commit 1795a66ee1
5 changed files with 6 additions and 5 deletions

View File

@@ -1 +1 @@
6.25.1
6.25.2

View File

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

View File

@@ -67,6 +67,7 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
line-height: 1;
}
.board-label-archived {

View File

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

View File

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