diff --git a/js/module/array2d.js b/js/module/array2d.js index 1054ce15c1d7ec919f2b814e636b026a3cb60310..869781d6ca992d5dcbd65b6cb32631981b02e981 100644 --- a/js/module/array2d.js +++ b/js/module/array2d.js @@ -130,7 +130,7 @@ Array2DTracer.prototype = $.extend(true, Object.create(Tracer.prototype), { processStep: function (step, options) { switch (step.type) { case 'notify': - if (step.v) { + if (step.v === 0 || step.v) { var $row = this.$table.find('.mtbl-row').eq(step.x); var $col = $row.find('.mtbl-col').eq(step.y); $col.text(TracerUtil.refineByType(step.v));