diff --git a/src/routes/_components/LengthIndicator.html b/src/routes/_components/LengthIndicator.html index a06a94fd..01ef12cb 100644 --- a/src/routes/_components/LengthIndicator.html +++ b/src/routes/_components/LengthIndicator.html @@ -43,7 +43,7 @@ lengthToDisplay: ({ length, max }) => max - length, lengthLabel: ({ overLimit, lengthToDisplayDeferred }) => { if (overLimit) { - return `${lengthToDisplayDeferred} characters over limit` + return `${-lengthToDisplayDeferred} characters over limit` } else { return `${lengthToDisplayDeferred} characters remaining` }