You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue with current.njk on the develop branch. When I add the "current" module, I get a JS error: TypeError: value.replace is not a function. It's because of
this.nunjucksEnvironment().addFilter("decimalSymbol", function(value) { return value.replace(/\./g, this.config.decimalSymbol); }.bind(this));
value.replace throws the error. If I put it as value.toString().replace, it works
Also the "Loading . . ." string is escaped improperly in the current.njk and forecast.njk
it shows up as "Loading &hellip"
The text was updated successfully, but these errors were encountered:
Issue with current.njk on the develop branch. When I add the "current" module, I get a JS error: TypeError: value.replace is not a function. It's because of
this.nunjucksEnvironment().addFilter("decimalSymbol", function(value) { return value.replace(/\./g, this.config.decimalSymbol); }.bind(this));
value.replace throws the error. If I put it as value.toString().replace, it works
Also the "Loading . . ." string is escaped improperly in the current.njk and forecast.njk
it shows up as "Loading &hellip"
The text was updated successfully, but these errors were encountered: