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
At least one user has reported confusion about how we round up or display hours on the project page.
It turns out that when we make a project chart and table we explicitly truncate the hours by doing applymap("{:.0f}".format). I am not sure this is desired behavior, especially as we provide "export CSV" functionality. We probably want to display the fractional hours as well (:.2f).
The text was updated successfully, but these errors were encountered:
At least one user has reported confusion about how we round up or display hours on the project page.
It turns out that when we make a project chart and table we explicitly truncate the hours by doing
applymap("{:.0f}".format)
. I am not sure this is desired behavior, especially as we provide "export CSV" functionality. We probably want to display the fractional hours as well (:.2f
).The text was updated successfully, but these errors were encountered: