Skip to content

Commit

Permalink
Fix pending exclusion pagination (#1578)
Browse files Browse the repository at this point in the history
Fixes #1545

### Changes

- Fixes not being able to change page
- Fixes pagination alignment
  • Loading branch information
SuaYoo authored and ikreymer committed Mar 6, 2024
1 parent 04b081e commit 2c7229d
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -45,10 +45,11 @@ export class CrawlPendingExclusions extends LiteElement {
render() {
return html`
<btrix-section-heading style="--margin: var(--sl-spacing-small)">
<div class="flex items-center justify-between">
<div class="flex w-full items-center justify-between">
<div>${msg("Pending Exclusions")} ${this.renderBadge()}</div>
${this.total && this.total > this.pageSize
? html`<btrix-pagination
page=${this.page}
size=${this.pageSize}
totalCount=${this.total}
compact
Expand Down

0 comments on commit 2c7229d

Please sign in to comment.