diff --git a/website/o3dv/sidebar.js b/website/o3dv/sidebar.js index dd12b04..f914dc3 100644 --- a/website/o3dv/sidebar.js +++ b/website/o3dv/sidebar.js @@ -96,6 +96,8 @@ OV.Sidebar = class minimumFractionDigits: 2, maximumFractionDigits: 2 }); + } else if (property.type === OV.PropertyType.Boolean) { + valueText = property.value ? 'Yes' : 'No'; } else if (property.type === OV.PropertyType.Percent) { valueText = parseInt (property.value * 100, 10).toString () + '%'; } else if (property.type === OV.PropertyType.Color) {