feat(ui-components): source apps improvements

This commit is contained in:
Kristaps Fabians Geikins
2023-09-30 21:20:11 +03:00
parent a89446a216
commit 1fcd4fbe2a
@@ -9,6 +9,8 @@
:show-label="showLabel"
:name="name || 'sourceApps'"
:filter-predicate="searchFilterPredicate"
:clearable="clearable"
:help="help"
by="name"
>
<template #nothing-selected>
@@ -121,6 +123,12 @@ const props = defineProps({
items: {
type: Array as PropType<Optional<SourceAppDefinition[]>>,
default: undefined
},
clearable: {
type: Boolean
},
help: {
type: String
}
})