From 46034e53bbe8430f9ce3a3b453a98c1b30d23622 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Mon, 2 Feb 2026 14:11:01 +0100 Subject: [PATCH] fixed the automatic selection in the autocomplete --- public/js/pages/Radius/RadiusUsers.js | 1 + .../tt-core/components/forms/TtSmartAutocomplete.js | 12 +++++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/public/js/pages/Radius/RadiusUsers.js b/public/js/pages/Radius/RadiusUsers.js index 301768ad8..bfd37d765 100644 --- a/public/js/pages/Radius/RadiusUsers.js +++ b/public/js/pages/Radius/RadiusUsers.js @@ -9,6 +9,7 @@ const RadiusUsers = { props.initialMode, (val) => { + if (val && val !== mode.value) { + mode.value = val; + } + }); + const debounce = (fn, ms) => { let timeout; return (...args) => {