Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
fee4276
bug resolved: horizontal scroll removed in execution-log modal, elips…
yashin4112 Aug 12, 2025
f2d48e6
refactor:resolved language mapper bugs
AishDani Aug 11, 2025
992880a
refactor:resolved beta-release bugs
AishDani Aug 11, 2025
5bf2168
refactor: remove console log
AishDani Aug 11, 2025
a553772
refactor:package-lock in upload api
AishDani Aug 11, 2025
d8a4807
fix: update @contentstack/cli-utilities to version 1.0.3 and inquirer…
AishDani Aug 11, 2025
f8bcb00
fix: update checksums for package-lock.json files in .talismanrc
AishDani Aug 11, 2025
ec1fbfe
refactor: update package names to include versioning and add new depe…
AishDani Aug 11, 2025
e4956d4
fix: add checksums for new package-lock.json files in migration direc…
AishDani Aug 11, 2025
b09eb7c
refactor:resolved PR comments
AishDani Aug 11, 2025
f5cd20d
chore: update react-scripts to version 5.0.1 in package.json
AishDani Aug 12, 2025
f2d3675
fix: add checksum for ui/package-lock.json in .talismanrc
AishDani Aug 12, 2025
49e4c9b
feat: enhance file path security in migration service and update pack…
yashin4112 Aug 12, 2025
e6636a3
Merge branch 'dev' into bugfix/audit-log
yashin4112 Aug 12, 2025
f607621
fix: add checksum for new index.scss file in .talismanrc
yashin4112 Aug 12, 2025
3826c06
Update api/src/services/migration.service.ts
umeshmore45 Aug 12, 2025
1ba3ffd
fix: remove unnecessary console log from AuditLogs component and trai…
yashin4112 Aug 12, 2025
50c9fee
fix: correct CSS syntax by adding missing semicolon in LogModal.scss
yashin4112 Aug 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ui/src/components/AuditLogs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,6 @@ const AuditLogs: React.FC = () => {
return renderCell(data?.missingCTSelectFieldValues);
}
if (typeof data?.missingRefs === 'object' && data?.missingRefs) {
console.info(data?.missingRefs);
const ctUid = (data?.missingRefs as any)?.[0]?._content_type_uid;
if (Array.isArray(ctUid)) {
return renderCell(ctUid?.length > 0 ? ctUid?.join(', ') : null);
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/Common/Modal/LogModal/LogModal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
word-break: break-word;
overflow-wrap: break-word ;
white-space: pre-wrap;
width: 100%
width: 100%
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add ;

}