Files
web/web_widget_x2many_2d_matrix
gaikaz 74559098b4 web_widget_x2many_2d_matrix: Fix show_column_totals option
Commit a5e6acc3 introduced a bug, where show_column_totals="0" wouldn't work.
This is because JS ternary operator took node's attribute value as part of the condition.

As an example simplified JS code (before change):
`'0' || true ? '1' : ''` -> `'1'`
And this is what was probably meant originally (after change)
`'0' || (true ? '1' : '')` -> `'0'`
2020-06-17 18:14:11 +03:00
..
2020-03-08 14:14:02 +00:00