5.11.1: Стили TaskList и карточек Wishlist
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m3s

This commit is contained in:
poignatov
2026-03-04 18:22:58 +03:00
parent 92453def91
commit 6caed05c9f
5 changed files with 24 additions and 14 deletions

View File

@@ -630,15 +630,16 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa
)}
</div>
)}
<button
className="card-menu-button"
onClick={(e) => handleMenuClick(item, e)}
title="Меню"
>
</button>
<div className="wishlist-card-content">
<button
className="card-menu-button"
onClick={(e) => handleMenuClick(item, e)}
title="Меню"
>
</button>
<div className="card-image">
<div className="card-image">
{item.image_url ? (
<img src={item.image_url} alt={item.name} />
) : (
@@ -664,6 +665,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa
}
return null
})()}
</div>
</div>
)
}