From 1036e4a067cc3fd60da3b85a69afa99e27f8a7ff Mon Sep 17 00:00:00 2001 From: Adam McKissock Date: Sat, 7 Sep 2024 12:11:42 +0100 Subject: [PATCH] Fix to seatplan CSS When a group style is in-use but the user doesnt have permissions to the seat, it will show greyed out as disabled, this will maintain the group coloring instead. --- resources/views/seatingplans/_plan.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/seatingplans/_plan.blade.php b/resources/views/seatingplans/_plan.blade.php index 70443783..89b185ec 100644 --- a/resources/views/seatingplans/_plan.blade.php +++ b/resources/views/seatingplans/_plan.blade.php @@ -31,7 +31,7 @@ $canPick = false; $name = 'Not Available'; if ($class === 'available') { - $class = 'disabled'; + $class = ''; } } }