diff --git a/src/views/dashboard/imsCDR/index.vue b/src/views/dashboard/imsCDR/index.vue index 2696dd21..57856434 100644 --- a/src/views/dashboard/imsCDR/index.vue +++ b/src/views/dashboard/imsCDR/index.vue @@ -107,7 +107,7 @@ let tableColumns: ColumnsType = [ title: t('views.dashboard.cdr.recordType'), dataIndex: 'cdrJSON', align: 'left', - width: 100, + width: 150, customRender(opt) { const cdrJSON = opt.value; return cdrJSON.recordType; @@ -125,7 +125,7 @@ let tableColumns: ColumnsType = [ dataIndex: 'cdrJSON', key: 'calledParty', align: 'left', - width: 100, + width: 120, customRender(opt) { const cdrJSON = opt.value; return cdrJSON.calledParty; @@ -136,7 +136,7 @@ let tableColumns: ColumnsType = [ dataIndex: 'cdrJSON', key: 'callerParty', align: 'left', - width: 100, + width: 120, customRender(opt) { const cdrJSON = opt.value; return cdrJSON.callerParty; @@ -160,7 +160,7 @@ let tableColumns: ColumnsType = [ dataIndex: 'cdrJSON', key: 'cause', align: 'left', - width: 100, + width: 150, }, { title: t('views.dashboard.cdr.time'),