You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While Creating a tag by pressing the Enter Key does not work for me. Anyhow it recognizes the Space Key and works properly.
<AutoTags
suggestions={this.state.items}
tagsSelected={this.state.selectedItems}
handleAddition={this.handleAddition}
handleDelete={this.handleDelete}
onCustomTagCreated={(value) => this.handleInput(value)}
createTagOnSpace={true}
placeholder="Choose Cliks to share" />
handleDelete = index => {
let tagsSelected = this.state.selectedItems;
tagsSelected.splice(index, 1);
this.setState({ selectedItems: tagsSelected });
}
While Creating a tag by pressing the Enter Key does not work for me. Anyhow it recognizes the Space Key and works properly.
<AutoTags
suggestions={this.state.items}
tagsSelected={this.state.selectedItems}
handleAddition={this.handleAddition}
handleDelete={this.handleDelete}
onCustomTagCreated={(value) => this.handleInput(value)}
createTagOnSpace={true}
placeholder="Choose Cliks to share" />
handleDelete = index => {
let tagsSelected = this.state.selectedItems;
tagsSelected.splice(index, 1);
this.setState({ selectedItems: tagsSelected });
}
I Have tested the code on Both Mobile and Web platforms. but :(
The text was updated successfully, but these errors were encountered: