Data inspector GoJS

I asked a question regarding data inspector yesterday, and a solution was provided. However, today I noticed that the data inspector doesn’t display 0 values (?). I’ve modified an example that I talked about in this post: Inspecting item array values - #7 by marin
I’ve set a value of 0 to one of the items in the table and the values wasn’t displayed. When changed to 0.1, the value displays normally.
Seems like a bug?

The problem seems to be this line:
tbody.appendChild(this.buildPropertyRow(k, defaultValue || ‘’));

0 || ‘’ will result in an empty string

Thanks for pointing that out. We’ll investigate.

I assume the obvious fix works for you?

Yes, it does.