Add missing translation terms
This commit is contained in:
@@ -42,7 +42,7 @@ const PlayerEdit = (props) => (
|
||||
{ id: 192, name: '192' },
|
||||
{ id: 256, name: '256' },
|
||||
{ id: 320, name: '320' },
|
||||
{ id: 0, name: 'Unlimited' },
|
||||
{ id: 0, name: '-' },
|
||||
]}
|
||||
/>
|
||||
<TextField source="client" />
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user