Skip to content
Snippets Groups Projects
Commit e5b5cd39 authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed issue where compile timeout was not correctly displayed for edit...

- fixed issue where compile timeout was not correctly displayed for edit exercise view (but values were properly saved in backend)
parent 96e02601
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ import Logger from './helpers/logger'
* y - breaking changes / new features
* z - fixes, small changes
*/
export const versionString = '2.19.3'
export const versionString = '2.19.4'
export const supportMail = 'yapex@informatik.uni-halle.de'
......
......@@ -35,6 +35,7 @@ export function setChangTest(test: ExerciseTestForBackend): MultiActions {
dispatch(setEditorTest_memoryLimitInKb(test.testSettings.memoryLimitInKb))
dispatch(setEditorTest_timeoutInMs(test.testSettings.timeoutInMs))
dispatch(setEditorTest_maxDiskSpaceInKb(test.testSettings.maxDiskSpaceInKb))
dispatch(setEditorTest_compileTimeoutInMs(test.testSettings.compileTimeoutInMs))
dispatch(setEditorTest_compilerOptions(test.testSettings.compilerOptions))
dispatch(setEditorTest_files(test.files))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment