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 ad13dda commit 8b7b543Copy full SHA for 8b7b543
src/pages/Run.tsx
@@ -30,8 +30,10 @@ const Run = () => {
30
return (<>
31
{surveyData === null && <div>Loading...</div>}
32
{surveyData === undefined && <div>Survey not found</div>}
33
- {!!surveyData && <>
+ {!!surveyData && !!surveyModel && !surveyModel.title && <>
34
<h1>{surveyData.name}</h1>
35
+ </>}
36
+ {!!surveyModel && <>
37
<Survey model={surveyModel}/>
38
</>}
39
</>);
0 commit comments