Skip to content

Commit 4037276

Browse files
authored
Update CaseView.tsx (#550)
Set function was setting the truncated output as expected output. Modified it so that the original output is set as expected output when clicked.
1 parent 89c7e71 commit 4037276

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webview/frontend/CaseView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export default function CaseView(props: {
231231
<div
232232
className="expectedoutput"
233233
onClick={() => {
234-
setOutput(trunctateStdout(resultText));
234+
setOutput(resultText);
235235
props.notify('Set As Expected Output');
236236
}}
237237
title="Set As Expected Output"

0 commit comments

Comments
 (0)