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
When filtering json through "jq", integer floats (0.0, 1.0, ...) are converted to integers without decimals (0, 1, ...)
This blocks the packing of the module with an error as Error: Could not convert src/ux/areas.tpl/area_technical.git.json to area_technical.git: {"type":"float","value":0}
This error could be ignorable by being tolerant and treating int as float: 0 as 0.0, etc...
The text was updated successfully, but these errors were encountered:
When filtering json through "jq", integer floats (0.0, 1.0, ...) are converted to integers without decimals (0, 1, ...)
This blocks the packing of the module with an error as
Error: Could not convert src/ux/areas.tpl/area_technical.git.json to area_technical.git: {"type":"float","value":0}
This error could be ignorable by being tolerant and treating int as float: 0 as 0.0, etc...
The text was updated successfully, but these errors were encountered: