[ADF-5043] Default adf-cloud-task-list and adf-cloud-process-list doesn't work (#5347)

This commit is contained in:
dhrn
2019-12-23 21:47:03 +05:30
committed by Eugenio Romano
parent d8c35c9af0
commit aa12be15d4
2 changed files with 9 additions and 8 deletions

View File

@@ -18,17 +18,18 @@
export let processCloudPresetsDefaultModel = {
'default': [
{
'key': 'name',
'key': 'entry.name',
'type': 'text',
'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.NAME',
'sortable': true
},
{
'key': 'created',
'type': 'text',
'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.CREATED',
'key': 'entry.startDate',
'type': 'date',
'title': 'ADF_CLOUD_PROCESS_LIST.PROPERTIES.START_DATE',
'cssClass': 'hidden',
'sortable': true
'sortable': true,
'format': 'timeAgo'
}
]
};

View File

@@ -18,20 +18,20 @@
export let taskPresetsCloudDefaultModel = {
'default': [
{
'key': 'name',
'key': 'entry.name',
'type': 'text',
'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.NAME',
'sortable': true
},
{
'key': 'created',
'key': 'entry.created',
'type': 'text',
'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.CREATED',
'cssClass': 'hidden',
'sortable': true
},
{
'key': 'assignee',
'key': 'entry.assignee',
'type': 'text',
'title': 'ADF_CLOUD_TASK_LIST.PROPERTIES.ASSIGNEE',
'cssClass': 'hidden',