Skip to content

Commit

Permalink
fix: mark invalid listboxes as rendered
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Wizard committed May 12, 2023
1 parent a002415 commit 961db73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apis/nucleus/src/components/listbox/ListBoxInline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,10 @@ function ListBoxInline({ options, layout }) {
</IconButton>
);

if (isInvalid) {
renderedCallback?.();
}

return (
<>
{showDetachedToolbarOnly && <ActionsToolbar direction={direction} {...getActionToolbarProps(true)} />}
Expand Down

0 comments on commit 961db73

Please sign in to comment.