From 06d5d8072ed2dbc62974b9c54ffcb929201b742c Mon Sep 17 00:00:00 2001 From: Dmitry Popov Date: Wed, 3 Dec 2025 12:21:40 +0100 Subject: [PATCH] fix(core): fixed issue with default select mode --- lib/wanderer_app_web/components/core_components.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wanderer_app_web/components/core_components.ex b/lib/wanderer_app_web/components/core_components.ex index 29c45c20..f8a53adb 100644 --- a/lib/wanderer_app_web/components/core_components.ex +++ b/lib/wanderer_app_web/components/core_components.ex @@ -712,7 +712,7 @@ defmodule WandererAppWeb.CoreComponents do attr(:input_class, :string, default: nil) attr(:dropdown_extra_class, :string, default: nil) attr(:option_extra_class, :string, default: nil) - attr(:mode, :atom, default: nil) + attr(:mode, :atom, default: :single) attr(:options, :list, default: []) attr(:debounce, :integer, default: nil) attr(:update_min_len, :integer, default: nil)