Fix timestamp dipslay

Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
soupette 2020-02-24 10:05:15 +01:00
parent e232287152
commit 2f3bbcb2db
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@
"attribute.text.description": "Small or long text like title or description", "attribute.text.description": "Small or long text like title or description",
"attribute.text": "Text", "attribute.text": "Text",
"attribute.time": "Time", "attribute.time": "Time",
"attribute.timestamp": "Timestamp",
"attribute.uid.description": "Unique identifier", "attribute.uid.description": "Unique identifier",
"attribute.uid": "Uid", "attribute.uid": "Uid",
"button.attributes.add.another": "Add another field", "button.attributes.add.another": "Add another field",

View File

@ -5,6 +5,7 @@ const getAttributeDisplayedType = type => {
case 'date': case 'date':
case 'datetime': case 'datetime':
case 'time': case 'time':
case 'timestamp':
displayedType = 'date'; displayedType = 'date';
break; break;
case 'integer': case 'integer':