summaryrefslogtreecommitdiff
path: root/web-ui/src/common
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-04-04 18:27:19 -0300
committerSriram Viswanathan <sriramv@thoughtworks.com>2017-04-04 18:27:19 -0300
commit8c4b36a93e8e089186e0ffce5aecc97d3ce9e8bc (patch)
treec3ba2d1aeb6503e1a3b738d7256b4676c7a6465c /web-ui/src/common
parent50d64627a924234ef5858b82bee8c9c33fb08f09 (diff)
[#938] Adds link to backup-account on the backup account step
with @anikarni
Diffstat (limited to 'web-ui/src/common')
-rw-r--r--web-ui/src/common/submit_button/submit_button.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/web-ui/src/common/submit_button/submit_button.js b/web-ui/src/common/submit_button/submit_button.js
index 1224c7bd..f77a5596 100644
--- a/web-ui/src/common/submit_button/submit_button.js
+++ b/web-ui/src/common/submit_button/submit_button.js
@@ -30,7 +30,7 @@ const buttonStyle = {
height: '48px'
};
-const SubmitButton = ({ buttonText, disabled = false }) => (
+const SubmitButton = ({ buttonText, disabled = false, ...other }) => (
<div className='submit-button'>
<RaisedButton
type='submit'
@@ -41,6 +41,7 @@ const SubmitButton = ({ buttonText, disabled = false }) => (
overlayStyle={buttonStyle}
fullWidth
primary
+ {...other}
/>
</div>
);