diff --git a/packages/ui/components/editor/plugins/AddVariablesDropdown.tsx b/packages/ui/components/editor/plugins/AddVariablesDropdown.tsx index ea88dd00e3..d0aa33fc26 100644 --- a/packages/ui/components/editor/plugins/AddVariablesDropdown.tsx +++ b/packages/ui/components/editor/plugins/AddVariablesDropdown.tsx @@ -142,20 +142,20 @@ export const AddVariablesDropdown = (props: IAddVariablesDropdown) => { onChange={(e) => setQuery(e.target.value)} placeholder={t("search_variables")} aria-label={t("search_variables")} - className="border-subtle bg-default focus:ring-brand-800 w-full rounded-md border px-3 py-2 text-sm outline-none focus:ring-1" + className="border-subtle bg-default focus:ring-subtle w-full rounded-md border px-3 py-2 text-sm outline-none focus:ring-1" /> -
+
{filteredVariables.length === 0 ? (
{t("no_variables_found")}
) : ( filteredVariables.map((variable, index) => ( - +