Skip to content

Commit 7b0cc57

Browse files
authored
Fix null check in WIT (#1531)
* fix null check
1 parent 336f115 commit 7b0cc57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorboard/plugins/interactive_inference/tf_interactive_inference_dashboard/tf-interactive-inference-dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3212,7 +3212,7 @@ <h2>Create a distance feature</h2>
32123212
}
32133213
let v = this.dataPointValueFromFeature_(
32143214
featureRoot.feature[fname], true);
3215-
if (v) {
3215+
if (v != null) {
32163216
d[fname] = v;
32173217
}
32183218
}

0 commit comments

Comments
 (0)