Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unordered list from Marquee & ensure we have no empty rows #2035

Merged
merged 5 commits into from
Feb 4, 2025

Conversation

hasparus
Copy link
Collaborator

@hasparus hasparus commented Feb 4, 2025

Upon using it a bit, I realized that <ul> was added mistakenly, and I copy-pasted it like a dumbo.
Also fixed the math for chunking so we don't add an empty row.

Copy link

changeset-bot bot commented Feb 4, 2025

🦋 Changeset detected

Latest commit: caff0f8

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@theguild/components Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Copy link
Contributor

github-actions bot commented Feb 4, 2025

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@theguild/components 9.3.2-alpha-20250204184603-caff0f85bfdd5339cae8a6d0406b9238250f0f50 npm ↗︎ unpkg ↗︎

Copy link
Contributor

github-actions bot commented Feb 4, 2025

📚 Storybook Deployment

The latest changes are available as preview in: https://b93a646a.the-guild-docs-storybook.pages.dev

@@ -106,11 +106,15 @@ export function MarqueeRows({
className,
...rest
}: MarqueeRowsProps) {
const chunkSize = Math.ceil(children.length / rows);
const chunkSize = Math.floor(children.length / rows);
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I ended up with an empty chunk bcs of

48 / 9 == 5.3333
ceil(5.333) == 6
image

now the math is correct

@hasparus hasparus enabled auto-merge (squash) February 4, 2025 18:45
@hasparus hasparus requested a review from saihaj February 4, 2025 18:45
@hasparus hasparus merged commit 737277b into main Feb 4, 2025
5 checks passed
@hasparus hasparus deleted the marquee-no-ul branch February 4, 2025 19:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants