Skip to content

Commit

Permalink
format total documents on Index Health page
Browse files Browse the repository at this point in the history
  • Loading branch information
columbian-chris committed Oct 28, 2024
1 parent 06719e9 commit 03dab45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/partials/stats-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<div class="ep-flex-container">
<div class="ep-totals-column inside">
<p class="ep-totals-title"><?php esc_html_e( 'Total Documents', 'elasticpress' ); ?></p>
<p class="ep-totals-data"><?php echo esc_html( $totals['docs'] ); ?></p>
<p class="ep-totals-data"><?php echo esc_html(number_format( $totals['docs'] )); ?></p>

Check failure on line 87 in includes/partials/stats-page.php

View workflow job for this annotation

GitHub Actions / PHP Lint

Expected 1 spaces after opening parenthesis; 0 found

Check failure on line 87 in includes/partials/stats-page.php

View workflow job for this annotation

GitHub Actions / PHP Lint

Expected 1 spaces before closing parenthesis; 0 found
</div>
<div class="ep-totals-column inside">
<p class="ep-totals-title"><?php esc_html_e( 'Total Size', 'elasticpress' ); ?></p>
Expand Down

0 comments on commit 03dab45

Please sign in to comment.