fix(room): prevent click event propagation on actions container
All checks were successful
Build & Push Docker Image / build (push) Successful in 6m26s

This commit is contained in:
2026-03-03 10:38:48 +01:00
parent 4bb22be496
commit 05f2941b16

View File

@@ -87,7 +87,7 @@ export default function RoomCard({ room, onDelete }) {
</div>
{/* Actions */}
<div className="flex items-center gap-2 pt-3 border-t border-th-border">
<div className="flex items-center gap-2 pt-3 border-t border-th-border" onClick={(e) => e.stopPropagation()}>
<button
onClick={async (e) => {
e.stopPropagation();