diff --git a/webapp/components/survey/SurveyCreate/SurveyCreate.js b/webapp/components/survey/SurveyCreate/SurveyCreate.js index 78ddbdeac7..9ac5f28bad 100644 --- a/webapp/components/survey/SurveyCreate/SurveyCreate.js +++ b/webapp/components/survey/SurveyCreate/SurveyCreate.js @@ -50,6 +50,7 @@ const SurveyCreate = (props) => { cloneFromCycle, options, file, + uploading, uploadProgressPercent, } = newSurvey @@ -62,6 +63,7 @@ const SurveyCreate = (props) => {
{
{ {createType === createTypes.import && showImport && ( <> - {uploadProgressPercent >= 0 ? ( + {uploading && uploadProgressPercent >= 0 ? (
@@ -204,7 +207,7 @@ const SurveyCreate = (props) => {