Document item create new item support enter key.
This commit is contained in:
parent
e88e9d9b8e
commit
7cdb333714
@ -26,7 +26,7 @@
|
||||
:ref="'input-item-field-' + _uid"
|
||||
v-model="search"
|
||||
@input="onInput"
|
||||
@keyup.enter="onInput"
|
||||
@keydown.enter="onItemCreate"
|
||||
/>
|
||||
</div>
|
||||
</span>
|
||||
@ -273,6 +273,7 @@ export default {
|
||||
if (!this.search) {
|
||||
return;
|
||||
}
|
||||
|
||||
//condition that checks if input is below the given character limit
|
||||
if (this.search.length < this.searchCharLimit) {
|
||||
this.setItemList(this.items); //once the user deletes the search input, we show the overall item list
|
||||
|
Loading…
x
Reference in New Issue
Block a user