Skip to content

Commit

Permalink
fix wrong count used
Browse files Browse the repository at this point in the history
  • Loading branch information
SuaYoo committed Jan 22, 2025
1 parent b351576 commit 7fcb84d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/org/collection-detail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ export class CollectionDetail extends BtrixElement {
${this.renderDetailItem(
msg("Total Pages"),
(col) =>
`${this.localize.number(col.pageCount)} ${pluralOf("pages", col.crawlCount)}`,
`${this.localize.number(col.pageCount)} ${pluralOf("pages", col.pageCount)}`,
)}
${when(this.collection?.created, (created) =>
// Collections created before 49516bc4 is released may not have date in db
Expand Down

0 comments on commit 7fcb84d

Please sign in to comment.