mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 21:00:39 +08:00
Fix History Timeline
This commit is contained in:
parent
424a9fe830
commit
f89a7c3eef
1 changed files with 4 additions and 1 deletions
|
@ -137,15 +137,18 @@ export class HistoryTimelineAdapter {
|
||||||
color: gridColor,
|
color: gridColor,
|
||||||
title: {
|
title: {
|
||||||
type: 'varchar',
|
type: 'varchar',
|
||||||
value: record.attributes.name
|
value: record.attributes.name,
|
||||||
|
loading: this.loading
|
||||||
},
|
},
|
||||||
user: {
|
user: {
|
||||||
type: 'varchar',
|
type: 'varchar',
|
||||||
value: record.attributes.assigned_user_name.user_name,
|
value: record.attributes.assigned_user_name.user_name,
|
||||||
|
loading: this.loading
|
||||||
},
|
},
|
||||||
date: {
|
date: {
|
||||||
type: 'datetime',
|
type: 'datetime',
|
||||||
value: record.attributes.date_end,
|
value: record.attributes.date_end,
|
||||||
|
loading: this.loading
|
||||||
},
|
},
|
||||||
record
|
record
|
||||||
} as HistoryTimelineEntry;
|
} as HistoryTimelineEntry;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue