diff options
Diffstat (limited to 'src/containers/PollCreation/PollCreation.tsx')
-rw-r--r-- | src/containers/PollCreation/PollCreation.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/containers/PollCreation/PollCreation.tsx b/src/containers/PollCreation/PollCreation.tsx index e613afd..e350179 100644 --- a/src/containers/PollCreation/PollCreation.tsx +++ b/src/containers/PollCreation/PollCreation.tsx @@ -73,17 +73,17 @@ const PollCreation: React.FC = () => { {user && <UserStrip user={user} info="" />} <Divider /> <div className={classes.images}> - <PollCreationImage callback={setLeft} /> - <PollCreationImage callback={setRight} /> + <PollCreationImage callback={setLeft} progress={progressLeft} /> + <PollCreationImage callback={setRight} progress={progressRight} /> </div> <Button color="primary" - disabled={!(isLeftReady && isRightReady)} + disabled={!(isLeftReady && isRightReady) || Boolean(progressLeft || progressRight)} variant="contained" onClick={handleClick} fullWidth > - Submit + {(progressLeft || progressRight) ? 'Waiting for upload' : 'Submit'} </Button> </Card> </Container> |