Skip to content

Commit 0b6d65c

Browse files
fix(pagination): Ensure select title attribute displays the correct value on hover. (#21022)
* fix(Pagination): sync native select option title attribute value * docs: add contributor --------- Co-authored-by: Gururaj J <89023023+Gururajj77@users.noreply.github.com>
1 parent 35da22b commit 0b6d65c

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,6 +1564,15 @@
15641564
"contributions": [
15651565
"code"
15661566
]
1567+
},
1568+
{
1569+
"login": "trumanbutter",
1570+
"name": "Truman Butterworth",
1571+
"avatar_url": "https://avatars.githubusercontent.com/u/32148874?v=4",
1572+
"profile": "https://github.com/trumanbutter",
1573+
"contributions": [
1574+
"code"
1575+
]
15671576
}
15681577
],
15691578
"commitConvention": "none"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ check out our [Contributing Guide](/.github/CONTRIBUTING.md) and our
376376
<td align="center"><a href="https://github.com/vidhyarbiji"><img src="https://avatars.githubusercontent.com/u/11348409?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Vidhya Ravikumar</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=vidhyarbiji" title="Code">💻</a></td>
377377
<td align="center"><a href="https://github.com/mateus037"><img src="https://avatars.githubusercontent.com/u/34143412?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Mateus Rodrigues</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=mateus037" title="Code">💻</a></td>
378378
<td align="center"><a href="https://github.com/BiaBiruka"><img src="https://avatars.githubusercontent.com/u/128196689?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Beatriz Parolin</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=BiaBiruka" title="Code">💻</a></td>
379+
<td align="center"><a href="https://github.com/trumanbutter"><img src="https://avatars.githubusercontent.com/u/32148874?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Truman Butterworth</b></sub></a><br /><a href="https://github.com/carbon-design-system/carbon/commits?author=trumanbutter" title="Code">💻</a></td>
379380
</tr>
380381
</table>
381382

packages/react/src/components/Pagination/Pagination.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ const Pagination = React.forwardRef(
422422
hideLabel
423423
onChange={handlePageInputChange}
424424
value={page}
425+
key={page}
425426
disabled={pageInputDisabled || disabled}>
426427
{selectItems}
427428
</Select>

0 commit comments

Comments
 (0)