You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checkbox label is rendered in a generic Box without a element or appropriate aria attributes, which may prevent screen readers from associating the text with the checkbox.
The Box component is imported from "@semoss/ui" but used with MUI's sx prop; verify that this Box supports the same styling API and theme integration as MUI Box.
The component reads data.label but the CheckboxBlockDef interface doesn’t declare it, leading to type and runtime errors. Add an optional label field to the data object so TypeScript and consumers know it exists.
Why: Adding a nullish coalescing fallback prevents displaying “undefined” when data.label is absent, improving user experience.
Low
General
Use native label wrapper
Wrapping the checkbox and label in a native element ensures the label is correctly associated and accessible. Replace the wrapper with a and use a for the text.
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
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.
Description
Changes Made
How to Test
Notes