From 077845bc42e3980862a653e6002b0bbee28cc048 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Fri, 23 Feb 2024 14:58:15 -0600 Subject: [PATCH] put commas in +n on filter human-strings --- src/qqq/utils/qqq/FilterUtils.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qqq/utils/qqq/FilterUtils.tsx b/src/qqq/utils/qqq/FilterUtils.tsx index ffdd398..f872d22 100644 --- a/src/qqq/utils/qqq/FilterUtils.tsx +++ b/src/qqq/utils/qqq/FilterUtils.tsx @@ -395,10 +395,10 @@ class FilterUtils switch (andMoreFormat) { case "andNOther": - labels.push(` and ${n} other value${n == 1 ? "" : "s"}.`); + labels.push(` and ${n.toLocaleString()} other value${n == 1 ? "" : "s"}.`); break; case "+N": - labels[labels.length-1] += ` +${n}`; + labels[labels.length-1] += ` +${n.toLocaleString()}`; break; } }