Skip to content

Commit 40197ec

Browse files
fix: display full value in ConfirmedBriefView component
1 parent 1ffb853 commit 40197ec

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)