Skip to content

Commit

Permalink
another small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
animehart committed Jul 10, 2024
1 parent d8abc4f commit 71661c8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,8 +333,13 @@ const CurrentPageOfTotal = ({
<EuiText size="xs" textAlign="left" color="subdued" style={{ marginLeft: '8px' }}>
<FormattedMessage
id="xpack.csp.rules.rulesTable.showingPageOfTotalLabel"
defaultMessage="Showing {pageSize} of {total, plural, one {# rule} other {# rules}} \u2000|\u2000 Selected {selectedRulesAmount, plural, one {# rule} other {# rules}}"
values={{ pageSize, total, selectedRulesAmount: selectedRules.length || 0 }}
defaultMessage="Showing {pageSize} of {total, plural, one {# rule} other {# rules}} {pipe} Selected {selectedRulesAmount, plural, one {# rule} other {# rules}}"
values={{
pageSize,
total,
selectedRulesAmount: selectedRules.length || 0,
pipe: '\u2000|\u2000',
}}
/>
</EuiText>
</EuiFlexItem>
Expand Down

0 comments on commit 71661c8

Please sign in to comment.