File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ const TutorialPage = (props: PageProps) => {
108108 testStatus,
109109 } )
110110
111- const disableOptions = processes . length > 0 && props . state === 'TestRunning'
111+ const disableOptions = processes . length > 0 || props . state === 'TestRunning'
112112
113113 return (
114114 < div >
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ export const TUTORIAL_LIST_URL: string = process.env.REACT_APP_TUTORIAL_LIST_URL
1414export const SENTRY_DSN : string | null = process . env . REACT_APP_SENTRY_DSN || null
1515
1616// config variables
17- export const DISPLAY_RUN_TEST_BUTTON = ( process . env . CODEROAD_DISPLAY_RUN_TEST_BUTTON || '' ) . toLowerCase ( ) === 'true'
17+ export const DISPLAY_RUN_TEST_BUTTON = ( process . env . CODEROAD_DISPLAY_RUN_TEST_BUTTON || 'true ' ) . toLowerCase ( ) === 'true'
You can’t perform that action at this time.
0 commit comments