diff --git a/frontend/src/components/Controls/MultiSelectUserInput.vue b/frontend/src/components/Controls/MultiSelectUserInput.vue new file mode 100644 index 00000000..3a554c2e --- /dev/null +++ b/frontend/src/components/Controls/MultiSelectUserInput.vue @@ -0,0 +1,278 @@ + + + + + + + + + + + + + { + query = e.target.value + showOptions = true + } + " + autocomplete="off" + @focus="() => togglePopover()" + @keydown.delete.capture.stop="removeLastValue" + /> + + + + + + + + {{ + fetchUsers + ? __('No results found') + : __('Type an email address to invite') + }} + + + + + + + {{ option.label }} + + + {{ option.value }} + + + + + + + + + + + + + + + {{ info }} + + + + +