diff options
author | ThibG <thib@sitedethib.com> | 2019-08-03 19:10:39 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-03 19:10:39 +0200 |
commit | 089c6410208d294e7f1995e000bd796d4625246f (patch) | |
tree | 9683d8e065ba8bb888c0cde81f4ddd0cf859d79d /app | |
parent | 29609c09f4f6e50ebba60c8472e015c16275a4d2 (diff) |
Disable list title validation button when list title is empty (#11475)
Diffstat (limited to 'app')
-rw-r--r-- | app/javascript/mastodon/features/list_editor/components/edit_list_form.js | 2 | ||||
-rw-r--r-- | app/javascript/mastodon/features/lists/components/new_list_form.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/list_editor/components/edit_list_form.js b/app/javascript/mastodon/features/list_editor/components/edit_list_form.js index 3dc59c12e..3ccab12a8 100644 --- a/app/javascript/mastodon/features/list_editor/components/edit_list_form.js +++ b/app/javascript/mastodon/features/list_editor/components/edit_list_form.js @@ -11,7 +11,7 @@ const messages = defineMessages({ const mapStateToProps = state => ({ value: state.getIn(['listEditor', 'title']), - disabled: !state.getIn(['listEditor', 'isChanged']), + disabled: !state.getIn(['listEditor', 'isChanged']) || !state.getIn(['listEditor', 'title']), }); const mapDispatchToProps = dispatch => ({ diff --git a/app/javascript/mastodon/features/lists/components/new_list_form.js b/app/javascript/mastodon/features/lists/components/new_list_form.js index 739246640..7faf50be8 100644 --- a/app/javascript/mastodon/features/lists/components/new_list_form.js +++ b/app/javascript/mastodon/features/lists/components/new_list_form.js @@ -66,7 +66,7 @@ class NewListForm extends React.PureComponent { </label> <IconButton - disabled={disabled} + disabled={disabled || !value} icon='plus' title={title} onClick={this.handleClick} |