Skip to content
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function VaultCardContentLine(
variant="body2"
color="text.secondary"
fontFamily={'monospace'}
overflow={'scroll'}
overflow={'auto'}
textOverflow={'ellipsis'}
Comment on lines +29 to 30
Copy link

Copilot AI Sep 17, 2025

Choose a reason for hiding this comment

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

Using both overflow: 'auto' and textOverflow: 'ellipsis' together may not work as expected. The textOverflow: 'ellipsis' property requires overflow: 'hidden' to function properly. Consider using overflow: 'hidden' instead of 'auto' if the intent is to show ellipsis for overflowing text.

Suggested change
overflow={'auto'}
textOverflow={'ellipsis'}
overflow={'hidden'}
textOverflow={'ellipsis'}
whiteSpace={'nowrap'}

Copilot uses AI. Check for mistakes.
>
{props.value}
Expand Down