Skip to content

Commit 3b62345

Browse files
fix: display full value in ConfirmedBriefView component
2 parents 1ffb853 + 40197ec commit 3b62345

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content-gen/src/app/frontend/src/components/ConfirmedBriefView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function ConfirmedBriefView({ brief }: ConfirmedBriefViewProps) {
8080
color: tokens.colorNeutralForeground3,
8181
}}
8282
>
83-
{value.length > 100 ? value.substring(0, 100) + '...' : value}
83+
{value}
8484
</Text>
8585
</div>
8686
);

0 commit comments

Comments
 (0)