From fdd9affd85337b6e19d824708c1d67a63362a7d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Jul 2026 12:14:34 +0000 Subject: [PATCH] Add dot separator between model name and AIC value in footer --- setup/js/messages_footer.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/js/messages_footer.cjs b/setup/js/messages_footer.cjs index 978adb4..95cf27c 100644 --- a/setup/js/messages_footer.cjs +++ b/setup/js/messages_footer.cjs @@ -86,7 +86,7 @@ function buildAICEntry(label, value, modelAlias) { return { value, formatted, - suffix: formatted ? ` · ${prefix ? `${prefix} ` : ""}${formatted} AIC` : "", + suffix: formatted ? ` · ${prefix ? `${prefix} · ` : ""}${formatted} AIC` : "", }; }