- client: fix placeholder for table pages

This commit is contained in:
Ildar Kamalov 2019-11-26 15:16:52 +03:00
parent 713613e3b8
commit 38c7e732a6
5 changed files with 4 additions and 5 deletions

View File

@ -167,7 +167,6 @@
"next_btn": "Next",
"loading_table_status": "Loading...",
"page_table_footer_text": "Page",
"of_table_footer_text": "of",
"rows_table_footer_text": "rows",
"updated_custom_filtering_toast": "Updated the custom filtering rules",
"rule_removed_from_custom_filtering_toast": "Rule removed from the custom filtering rules",

View File

@ -153,7 +153,7 @@ class Filters extends Component {
nextText={t('next_btn')}
loadingText={t('loading_table_status')}
pageText={t('page_table_footer_text')}
ofText={t('of_table_footer_text')}
ofText="/"
rowsText={t('rows_table_footer_text')}
noDataText={t('no_filters_added')}
/>

View File

@ -88,7 +88,7 @@ class AutoClients extends Component {
nextText={t('next_btn')}
loadingText={t('loading_table_status')}
pageText={t('page_table_footer_text')}
ofText={t('of_table_footer_text')}
ofText="/"
rowsText={t('rows_table_footer_text')}
noDataText={t('clients_not_found')}
/>

View File

@ -258,7 +258,7 @@ class ClientsTable extends Component {
nextText={t('next_btn')}
loadingText={t('loading_table_status')}
pageText={t('page_table_footer_text')}
ofText={t('of_table_footer_text')}
ofText="/"
rowsText={t('rows_table_footer_text')}
noDataText={t('clients_not_found')}
/>

View File

@ -67,7 +67,7 @@ class Table extends Component {
nextText={t('next_btn')}
loadingText={t('loading_table_status')}
pageText={t('page_table_footer_text')}
ofText={t('of_table_footer_text')}
ofText="/"
rowsText={t('rows_table_footer_text')}
noDataText={t('rewrite_not_found')}
/>