Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(explorer): do not truncate object fields #4631

Merged
merged 5 commits into from
Jan 8, 2025
Merged
Changes from 4 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
4 changes: 2 additions & 2 deletions apps/explorer/src/components/object/FieldItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function FieldItem({

if (normalizedType === TYPE_URL) {
return (
<div className="truncate break-all">
<div className="break-all">
<Link href={value.toString()} variant="textHeroDark">
{value}
</Link>
Expand All @@ -58,7 +58,7 @@ export function FieldItem({
}

return (
<div className="truncate text-body-md text-neutral-40">
<div className="break-all text-body-md text-neutral-40">
evavirseda marked this conversation as resolved.
Show resolved Hide resolved
{value === null || value === undefined ? null : String(value)}
</div>
);
Expand Down
Loading