Skip to content

Commit 999d0ba

Browse files
committed
Fix: free seating section selector color
1 parent 52cb3be commit 999d0ba

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Changelog
22

3+
# v3.2.3 [2024-12-25]
4+
5+
## Patch Release
6+
7+
### Fixes
8+
- Fixed free seating section selector color
9+
310
# v3.2.2 [2024-12-25]
411

512
## Patch Release

src/components/controls/select/polyline/section-selector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const SectionManager = ({ options }: IControlProps) => {
5353
onChange={(e) => onUpdateSection({ ...section, name: e.target.value })}
5454
/>
5555
<IconButton
56-
className={twMerge("w-6 h-6 p-0 shrink-0", section?.freeSeating && "text-gray-400")}
56+
className={twMerge("w-6 h-6 p-0 shrink-0", !section?.freeSeating && "text-gray-400")}
5757
variant="secondary"
5858
icon={<DollarSign className="w-4 h-4" />}
5959
onClick={() =>

0 commit comments

Comments
 (0)