Commit bbc150a 1 parent ab55084 commit bbc150a Copy full SHA for bbc150a
File tree 2 files changed +11
-1
lines changed
src/ui/src/components/visualizer
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -126,6 +126,13 @@ export declare interface VisualizerConfig {
126
126
*/
127
127
hideInfoPanel ?: boolean ;
128
128
129
+ /**
130
+ * Whether to hide the node data in the info panel.
131
+ * Node data can still be seen on the node overlays.
132
+ * This only shows/hides the node data in the info panel.
133
+ */
134
+ hideNodeDataInInfoPanel ?: boolean ;
135
+
129
136
/**
130
137
* Whether to hide the legends.
131
138
*/
Original file line number Diff line number Diff line change @@ -568,7 +568,10 @@ export class InfoPanel {
568
568
}
569
569
570
570
get showNodeDataProviderSummary ( ) : boolean {
571
- if ( ! this . curModelGraph ) {
571
+ if (
572
+ ! this . curModelGraph ||
573
+ this . appService . config ( ) ?. hideNodeDataInInfoPanel
574
+ ) {
572
575
return false ;
573
576
}
574
577
You can’t perform that action at this time.
0 commit comments