diff --git a/app/javascript/dashboard/components/ui/Dropdown/DropdownList.vue b/app/javascript/dashboard/components/ui/Dropdown/DropdownList.vue index e6de8e1b1..8b77d54fb 100644 --- a/app/javascript/dashboard/components/ui/Dropdown/DropdownList.vue +++ b/app/javascript/dashboard/components/ui/Dropdown/DropdownList.vue @@ -48,7 +48,7 @@ const debouncedEmit = debounce(value => { const onSearch = value => { searchTerm.value = value; - debouncedEmit(); + debouncedEmit(value); }; const filteredListItems = computed(() => {