0
0
Fork 0

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

This commit is contained in:
ThibG 2019-08-03 19:10:39 +02:00 committed by Eugen Rochko
parent 29609c09f4
commit 089c641020
2 changed files with 2 additions and 2 deletions

View file

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