Skip to content

Commit ede3985

Browse files
committed
fix(place/desk/allocations): hot desk check
1 parent b42eb3d commit ede3985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/place/desk/allocations.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class Place::Desk::Allocations < PlaceOS::Driver
177177
row = csv.row
178178
desk_id = row[0]
179179
allocated_email = row[2].downcase.presence
180-
bookable = !!allocated_email || row[4].includes?("Hot")
180+
bookable = !!allocated_email || row[3].includes?("Hot")
181181
csv_allocations[desk_id] = Allocation.new(desk_id, row[1], allocated_email, bookable)
182182
end
183183

0 commit comments

Comments
 (0)