Revert "Hide add button when new item field is empty"

This reverts commit fa99c2e8c5.

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2020-12-29 16:08:54 +01:00
parent a7ca1d0856
commit 7912091bc5
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 3 additions and 11 deletions

View File

@ -118,23 +118,15 @@ export default class EditableItemList extends React.Component {
};
_renderNewItemField() {
let addButton;
console.log(this.props.newItem);
if (this.props.newItem) {
addButton = (
<AccessibleButton onClick={this._onItemAdded} kind="primary" type="submit">
{_t("Add")}
</AccessibleButton>
);
}
return (
<form onSubmit={this._onItemAdded} autoComplete="off"
noValidate={true} className="mx_EditableItemList_newItem">
<Field label={this.props.placeholder} type="text"
autoComplete="off" value={this.props.newItem || ""} onChange={this._onNewItemChanged}
list={this.props.suggestionsListId} />
{ addButton }
<AccessibleButton onClick={this._onItemAdded} kind="primary" type="submit">
{_t("Add")}
</AccessibleButton>
</form>
);
}