|
{{ column.labelKey | translate: { Default: column.defaultLabel } }}
@if (column.resizable !== false) {
}
|
}
|---|
|
@switch (column.key) {
@case ('title') {
{{
conv.title ||
('PAC.Xpert.UntitledConversation' | translate: { Default: 'Untitled conversation' })
}}
}
@case ('createdBy') {
{{ conv.createdBy | user }}
}
@case ('from') {
{{ conv.sourceIntegrationId || '-' }}
}
@case ('channelType') {
@if (conv.channelType) {
{{ sourceMessageLogIdsText(conv) || '-' }}
}
@case ('fromEndUser') {
{{ conv.fromEndUser ? (conv.fromEndUser | user) : conv.fromEndUserId }}
}
@case ('messageCount') {
{{ conv.messageCount | number: '0.0-0' }}
}
@case ('status') {
@switch (conv.status) {
@case ('busy') {
{{ conv.id }}
}
@case ('threadId') {
{{
conv.threadId
}}
}
@case ('createdAt') {
{{ conv.createdAt | date: 'yyyy-MM-dd HH:mm' }}
}
@case ('error') {
{{ conv.error }}
}
}
|
}