summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/src
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/lib/components/Select.svelte4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/lib/components/Select.svelte b/frontend/src/lib/components/Select.svelte
index 227959d..f7e87a4 100644
--- a/frontend/src/lib/components/Select.svelte
+++ b/frontend/src/lib/components/Select.svelte
@@ -18,10 +18,10 @@
export { inputId as id, valueAsObject as object, multiple as multi };
- function optionsPlaceholder(from: Value) {
+ function optionsPlaceholder(from: Value): Item[] {
if (from === undefined || from === null) return [];
- return Array.isArray(from) ? value : [value];
+ return Array.isArray(from) ? from : [from];
}
</script>