Add missing translation terms

This commit is contained in:
Deluan
2020-05-04 20:27:09 -04:00
parent 8d99c3ab92
commit 2f4d4c6e38
3 changed files with 11 additions and 7 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ const PlayerList = (props) => {
<SimpleList
primaryText={(r) => r.client}
secondaryText={(r) => r.userName}
tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : 'Unlimited')}
tertiaryText={(r) => (r.maxBitRate ? r.maxBitRate : '-')}
/>
) : (
<Datagrid rowClick="edit">
@@ -34,7 +34,7 @@ const PlayerList = (props) => {
</ReferenceField>
<FunctionField
source="maxBitRate"
render={(r) => (r.maxBitRate ? r.maxBitRate : 'Unlimited')}
render={(r) => (r.maxBitRate ? r.maxBitRate : '-')}
/>
<DateField source="lastSeen" showTime />
</Datagrid>