feature/convert-abstract-service-to-ts #1798

Merged
konrad merged 32 commits from dpschen/frontend:feature/convert-abstract-service-to-ts into main 2022-09-06 09:26:49 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 9616badc33 - Show all commits

View File

@ -55,6 +55,9 @@ function findLists(query: string) {
}
function select(l: IList | null) {
if (l === null) {
return
}
Object.assign(list, l)
emit('update:modelValue', list)
}