diff --git a/app/javascript/mastodon/components/button.js b/app/javascript/mastodon/components/button.js index 85b2d78ca..bcb855c7c 100644 --- a/app/javascript/mastodon/components/button.js +++ b/app/javascript/mastodon/components/button.js @@ -6,6 +6,7 @@ export default class Button extends React.PureComponent { static propTypes = { text: PropTypes.node, + type: PropTypes.string, onClick: PropTypes.func, disabled: PropTypes.bool, block: PropTypes.bool, @@ -42,6 +43,7 @@ export default class Button extends React.PureComponent { onClick={this.handleClick} ref={this.setRef} title={this.props.title} + type={this.props.type} > {this.props.text || this.props.children} diff --git a/app/javascript/mastodon/features/compose/components/compose_form.js b/app/javascript/mastodon/features/compose/components/compose_form.js index cd10d0eda..9f5c3b314 100644 --- a/app/javascript/mastodon/features/compose/components/compose_form.js +++ b/app/javascript/mastodon/features/compose/components/compose_form.js @@ -217,7 +217,7 @@ class ComposeForm extends ImmutablePureComponent { } return ( -
+
@@ -279,10 +279,16 @@ class ComposeForm extends ImmutablePureComponent {
-
-
+ ); }