mirror of
https://github.com/strapi/strapi.git
synced 2025-09-22 14:59:07 +00:00
Add boolean case in list view
This commit is contained in:
parent
f7c2d7f503
commit
a2a019524b
@ -30,6 +30,8 @@ class TableRow extends React.Component {
|
||||
return !_.isEmpty(value.toString()) ? value.toString() : '-';
|
||||
case 'integer':
|
||||
return !_.isEmpty(value.toString()) ? value.toString() : '-';
|
||||
case 'boolean':
|
||||
return value.toString();
|
||||
default:
|
||||
return '-';
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user