Skip to content

Commit

Permalink
fix: adjust controls state selection
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Aug 8, 2020
1 parent 0f611e8 commit ba9c936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/pages/src/ClassicPage/ClassicPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const ClassicPage: FC = () => {
controlsCount <= threshold &&
(propsCount === 0 ||
(controlsCount < propsCount && propsCount >= threshold));
const mixedControls = !splitControls && controlsCount === propsCount;
const mixedControls = !splitControls && controlsCount >= propsCount;
return (
<div>
<PackageVersion />
Expand Down

0 comments on commit ba9c936

Please sign in to comment.