Fix 'Show system messages' checkbox rendering#10
Open
Gkrumbach07 wants to merge 1 commit intomainfrom
Open
Conversation
Added rounded corners and background color to the checkbox indicator in DropdownMenuCheckboxItem to ensure proper visibility in both checked and unchecked states. The checkbox now clearly displays with a visible border and background, improving the UI for the 'Show system messages' checkbox and all other dropdown checkbox items. Changes: - Added 'rounded-sm' class for rounded corners - Added 'bg-background' class for visible background color Co-Authored-By: Claude (claude-sonnet-4-5) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixed the checkbox rendering issue in the dropdown menu component where the 'Show system messages' checkbox was not rendering correctly.
Changes
rounded-smclass for rounded corners on the checkbox indicatorbg-backgroundclass to provide a visible background colorTechnical Details
The issue was in the
DropdownMenuCheckboxItemcomponent incomponents/frontend/src/components/ui/dropdown-menu.tsx. The checkbox indicator span was missing background styling, making it difficult to see the unchecked state against certain backgrounds.File Changed:
components/frontend/src/components/ui/dropdown-menu.tsx(line 108)Testing & Verification
✅ Started the frontend locally with proper environment configuration
✅ Verified checkbox renders correctly in both checked and unchecked states
✅ Confirmed visual clarity with border and background
✅ Screenshot captured showing the fix working properly
Impact
This fix improves the UI for all dropdown checkbox items throughout the application, including:
DropdownMenuCheckboxItemcomponentScreenshot
🤖 Generated with Claude Code