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
To pick up a draggable item, press the space bar.
While dragging, use the arrow keys to move the item.
Press space again to drop the item in its new position, or press escape to cancel.
To pick up a draggable item, press the space bar.
While dragging, use the arrow keys to move the item.
Press space again to drop the item in its new position, or press escape to cancel.
Log gist:
Description
As a new user, the heatmap does not render until you have submitted the first commit. Until that happens, it is perpetually displaying the "heatmap.loading" icon.
Normally it shouldn't show "heatmap.loading", there should be a text.
I think it doesn't load because the API returns null if the user has no actions yet, which the js library then fails to parse. I'll submit a patch tomorrow
Activity
kolaente commentedon Oct 23, 2018
Normally it shouldn't show "heatmap.loading", there should be a text.
I think it doesn't load because the API returns
null
if the user has no actions yet, which the js library then fails to parse. I'll submit a patch tomorrowsapk commentedon Oct 23, 2018
@kolaente I already proposed a fix. You are right, it is because the array is not init (in the api reply) and the json representation is
null
not[]
.kolaente commentedon Oct 24, 2018
@sapk Great! Thanks!