Skip to content

Commit

Permalink
DST-603: edit comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aromko committed Dec 23, 2024
1 parent 31bec86 commit 36f8783
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/components/src/Pagination/Pagination.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const WithTable: Story = {
)}
</Table.Body>
</Table>
<Inline alignY="center" space={4}>
<Inline alignY="center" space={11}>
<Text fontSize="sm">
Showing {startIndex + 1} - {endIndex} of {mockData.length}
</Text>
Expand All @@ -195,18 +195,18 @@ export const WithTable: Story = {
onChange={setCurrentPage}
/>
<Split />
<FieldGroup labelWidth="100px">
<Inline alignY="center" space={4}>
<Text fontSize="sm">Results per page</Text>
<Select
width={40}
label="Results per page"
width={'fit'}
selectedKey={pageSize.toString()}
onChange={val => setPageSize(parseInt(val.toString()))}
>
<Select.Option id="10">10</Select.Option>
<Select.Option id="20">20</Select.Option>
<Select.Option id={'30'}>30</Select.Option>
</Select>
</FieldGroup>
</Inline>
</Inline>
</Stack>
</div>
Expand Down

0 comments on commit 36f8783

Please sign in to comment.