Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ui/src/views/CompanyEditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ function onScopeSearch(query) {
}

function filterScopes(query) {
if (!query) {
// After picking a scope, Vuetify echoes the selected name back through
// @update:search — if we treat that as a filter query we narrow the list
// to just the picked item and the user can't switch to another scope on
// re-open. Treat it as "show everything" instead.
if (!query || query === form.value.scope) {
scopeResults.value = scopeAll.value
return
}
Expand Down
Loading