Skip to content

Commit

Permalink
Merge branch 'scrollable-tabs' of https://github.com/ni/nimble into s…
Browse files Browse the repository at this point in the history
…crollable-tabs
  • Loading branch information
atmgrifter00 committed Oct 23, 2024
2 parents 4895d3a + 37f7ec6 commit d526d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const wideTabs = [
] as const;

const manyTabs: AnchorTabArgs[] = [];
for (let i = 0; i < 100; i++) {
for (let i = 1; i <= 100; i++) {
manyTabs.push({
title: `Tab ${i}`,
id: `${i}`,
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook/src/nimble/tabs/tabs.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const wideTabs = [
] as const;

const manyTabs: TabArgs[] = [];
for (let i = 0; i < 100; i++) {
for (let i = 1; i <= 100; i++) {
manyTabs.push({
title: `Tab ${i}`,
id: `${i}`,
Expand Down

0 comments on commit d526d69

Please sign in to comment.