Skip to content

Commit

Permalink
feat(pagination): fix tooltip issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Leotheluck authored and dpellier committed Jul 29, 2024
1 parent 003271a commit 38f533e
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class OdsPagination {
class="ods-pagination__list__page__ellipsis"
color={ ODS_BUTTON_COLOR.primary }
isDisabled={ true }
label="..."
label="…"
variant={ ODS_BUTTON_VARIANT.ghost }
>
</ods-button>
Expand All @@ -257,7 +257,11 @@ export class OdsPagination {
}

return (
<Host class="ods-pagination" isDisabled={this.isDisabled}>
<Host
class="ods-pagination"
isDisabled={this.isDisabled}
id={ this.hostId }
>
{
!!this.totalItems &&
<div class={{
Expand Down

0 comments on commit 38f533e

Please sign in to comment.