Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Genesys PGR
Genesys Website
Commits
3eb9bd19
Commit
3eb9bd19
authored
Sep 26, 2018
by
Matija Obreza
Browse files
FIX: Use ↺ instead of 0 when data is not yet available
parent
27f2c94a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/common/pagination/index.tsx
View file @
3eb9bd19
...
...
@@ -166,7 +166,7 @@ class PaginationComponent extends React.Component<IPaginationComponentProps, any
<
Grid
item
xs
=
{
12
}
>
<
div
className
=
{
`float-left pr-5
${
classes
.
bold
}
${
classes
.
textPagination
}
`
}
>
{
t
(
pageObj
&&
pageObj
.
totalElements
<
10000
?
'
common:paginate.numberOfItems
'
:
'
common:paginate.estimatedNumberOfItems
'
,
{
count
:
pageObj
?
pageObj
.
totalElements
:
0
,
what
:
t
(
displayName
||
'
common:label.item
'
,
{
count
:
pageObj
?
pageObj
.
totalElements
:
0
})
})
}
{
count
:
pageObj
?
pageObj
.
totalElements
:
'
↺
'
,
what
:
t
(
displayName
||
'
common:label.item
'
,
{
count
:
pageObj
?
pageObj
.
totalElements
:
0
})
})
}
</
div
>
{
!
infinite
&&
<
Select
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment