Skip to content
Merged
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions jsx/DataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import PaginationLinks from 'jsx/PaginationLinks';
import createFragment from 'react-addons-create-fragment';
import {CTA} from 'jsx/Form';
import {withTranslation} from 'react-i18next';
import i18n from 'I18nSetup';

/**
* Data Table component
Expand Down Expand Up @@ -591,7 +592,7 @@ class DataTable extends Component {
padding: '5px 0',
}}>
{this.props.t(
'{{pageCount}} rows displayed of {{totalCount}}.',
'{{pageCount}} rows displayed of {{totalCount}}. ',
Comment thread
fias06 marked this conversation as resolved.
Outdated
{
pageCount: rows.length,
totalCount: filteredCount,
Expand Down Expand Up @@ -644,7 +645,7 @@ class DataTable extends Component {
padding: '5px 0',
}}>
{this.props.t(
'{{pageCount}} rows displayed of {{totalCount}}.',
'{{pageCount}} rows displayed of {{totalCount}}. ',
{
pageCount: rows.length,
totalCount: filteredCount,
Expand Down
Loading