Skip to content

Commit

Permalink
Fix: free seating section selector color
Browse files Browse the repository at this point in the history
  • Loading branch information
Akalanka47000 committed Dec 25, 2024
1 parent 52cb3be commit 999d0ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
Changelog

# v3.2.3 [2024-12-25]

## Patch Release

### Fixes
- Fixed free seating section selector color

# v3.2.2 [2024-12-25]

## Patch Release
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const SectionManager = ({ options }: IControlProps) => {
onChange={(e) => onUpdateSection({ ...section, name: e.target.value })}
/>
<IconButton
className={twMerge("w-6 h-6 p-0 shrink-0", section?.freeSeating && "text-gray-400")}
className={twMerge("w-6 h-6 p-0 shrink-0", !section?.freeSeating && "text-gray-400")}
variant="secondary"
icon={<DollarSign className="w-4 h-4" />}
onClick={() =>
Expand Down

0 comments on commit 999d0ba

Please sign in to comment.