We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7d8e64 commit e831ddbCopy full SHA for e831ddb
tensorboard/plugins/projector/vz_projector/vz-projector.ts
@@ -588,7 +588,8 @@ class Projector
588
}
589
if (this.selectedPointIndices.length === 0) {
590
if (hoverText) {
591
- this.statusBar.innerText = hoverText!;
+ this.statusBar.innerText = hoverText;
592
+ this.statusBar.style.display = null!;
593
} else {
594
this.statusBar.style.display = 'none';
595
@@ -611,6 +612,8 @@ class Projector
611
612
this.selectedPointIndices.length + neighborsOfFirstPoint.length;
613
this.statusBar.innerText = `Selected ${totalNumPoints} points`;
614
if (totalNumPoints > 0) {
615
616
+ } else {
617
618
619
0 commit comments