We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b47473 commit 03b83cbCopy full SHA for 03b83cb
src/commons/assessmentWorkspace/AssessmentWorkspace.tsx
@@ -448,6 +448,18 @@ const AssessmentWorkspace: React.FC<AssessmentWorkspaceProps> = props => {
448
const handleContestEntryClick = (_submissionId: number, answer: string) => {
449
// TODO: Hardcoded to make use of the first editor tab. Refactoring is needed for this workspace to enable Folder mode.
450
handleEditorValueChange(0, answer);
451
+ // Hacky way to view the editor, might cause issues
452
+ sendToWebview(
453
+ Messages.NewEditor(
454
+ workspaceLocation,
455
+ `submission${_submissionId}`,
456
+ questionId,
457
+ question.library.chapter,
458
+ "",
459
+ answer
460
+ )
461
+ );
462
+ //
463
};
464
465
const tabs: SideContentTab[] = [
0 commit comments