Disable list title validation button when list title is empty (#11475)

master
ThibG 5 years ago committed by Eugen Rochko
parent 29609c09f4
commit 089c641020
  1. 2
      app/javascript/mastodon/features/list_editor/components/edit_list_form.js
  2. 2
      app/javascript/mastodon/features/lists/components/new_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 => ({

@ -66,7 +66,7 @@ class NewListForm extends React.PureComponent {
</label>
<IconButton
disabled={disabled}
disabled={disabled || !value}
icon='plus'
title={title}
onClick={this.handleClick}

Loading…
Cancel
Save