Skip to content

Commit

Permalink
[Masonry] Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Oct 18, 2021
1 parent c6f063c commit e5dfb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mui-lab/src/Masonry/Masonry.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const Masonry = React.forwardRef(function Masonry(inProps, ref) {
>
{children}
{/* columns are likely to have different heights and hence can start to merge;
a line break at the end of each column prevents columns from merging */}
a line break at the end of each column prevents columns from merging */}
{new Array(numberOfLineBreaks).fill('').map((_, index) => (
<span key={index} data-class="line-break" style={{ ...lineBreakStyle, order: index + 1 }} />
))}
Expand Down

0 comments on commit e5dfb93

Please sign in to comment.