Updated manager to 21.10.14
and my custom theme is not working. I think there is a problem with liquid math filters in the latest update. The times
filter always returns 0.
Here is my code
> <p> 5 plus 5 = {{ 5 | plus: 5 }} </p>
> <p> 10 minus 5 ={{ 10 | minus: 5 }} </p>
> <p> 20 divided on 4 = {{ 20 | divided_by: 4 }} </p>
> <p> 5 times 5 = {{ 5 | times: 5 }} </p>
This is the output
5 plus 5 = 10
10 minus 5 =5
20 divided on 4 = 5
5 times 5 = 0