Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DaKingKong committed Jun 21, 2024
1 parent a5ff5c0 commit c3492ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/logPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function getLogPageRender({ id, manifest, logType, triggerType, platformName, di
title: '',
type: 'boolean'
},
logType:{
logType: {
title: '',
type: 'string'
},
Expand Down Expand Up @@ -392,7 +392,7 @@ function getUnresolvedLogsPageRender({ unresolvedLogs }) {
const contactName = isMultipleContactConflit ? 'Multiple contacts' : unresolvedLogs[cacheId].contactInfo[0].name;
logsList.push({
const: cacheId,
title: `${contactName} (${unresolvedLogs[cacheId]?.phoneNumber ?? unresolvedLogs[cacheId].contactInfo[0].phone})`,
title: `${contactName} ${unresolvedLogs[cacheId]?.phoneNumber ? `(${unresolvedLogs[cacheId]?.phoneNumber})` : ''}`,
description: isNoContact ? 'Missing: No matched contact' : (isMultipleContactConflit ? 'Conflict: Multiple matched contacts' : 'Conflict: Multiple associations'),
meta: unresolvedLogs[cacheId].date,
icon: unresolvedLogs[cacheId].direction === 'Inbound' ? inboundCallIcon : outboundCallIcon,
Expand Down

0 comments on commit c3492ba

Please sign in to comment.