Skip to content

Commit 1ba3ffd

Browse files
committed
fix: remove unnecessary console log from AuditLogs component and trailing whitespace in log-modal css
1 parent 3826c06 commit 1ba3ffd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ui/src/components/AuditLogs/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,6 @@ const AuditLogs: React.FC = () => {
353353
return renderCell(data?.missingCTSelectFieldValues);
354354
}
355355
if (typeof data?.missingRefs === 'object' && data?.missingRefs) {
356-
console.info(data?.missingRefs);
357356
const ctUid = (data?.missingRefs as any)?.[0]?._content_type_uid;
358357
if (Array.isArray(ctUid)) {
359358
return renderCell(ctUid?.length > 0 ? ctUid?.join(', ') : null);

ui/src/components/Common/Modal/LogModal/LogModal.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
word-break: break-word;
1212
overflow-wrap: break-word ;
1313
white-space: pre-wrap;
14-
width: 100%
14+
width: 100%
1515
}

0 commit comments

Comments
 (0)