diff --git a/assets/javascripts/discourse/helpers/wizard-char-counter.js.es6 b/assets/javascripts/discourse/helpers/wizard-char-counter.js.es6 index 3cf4aee1..1e194314 100644 --- a/assets/javascripts/discourse/helpers/wizard-char-counter.js.es6 +++ b/assets/javascripts/discourse/helpers/wizard-char-counter.js.es6 @@ -2,21 +2,24 @@ import { registerUnbound } from "discourse-common/lib/helpers"; import I18n from "I18n"; import Handlebars from "handlebars"; -export default registerUnbound("wizard-char-counter", function (body, maxLength) { - let bodyLength = body ? body.length : 0; - let finalString; +export default registerUnbound( + "wizard-char-counter", + function (body, maxLength) { + let bodyLength = body ? body.length : 0; + let finalString; - if (maxLength) { - let isOverMax = bodyLength > maxLength ? "true" : "false"; - finalString = `