Skip to content

Commit

Permalink
Internal changes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 696416785
  • Loading branch information
zzzaries authored and copybara-github committed Nov 14, 2024
1 parent 0a5ffd3 commit c3163ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,14 @@
</mat-form-field>

<mat-checkbox
*ngIf="!isNewGraphViewer()"
[(ngModel)]="params.showMetadata"
name="showMetadata"
class="full-width"
>Show Metadata</mat-checkbox
>
<mat-checkbox
*ngIf="!isNewGraphViewer()"
[(ngModel)]="params.mergeFusion"
name="mergeFusion"
matTooltip="Hide the fusion subcomputations in the rendered graph"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ export class GraphConfig implements OnDestroy, OnChanges {
this.updateSelectedModule.emit(e.value);
}

isNewGraphViewer() {
return false;
}

ngOnDestroy() {
// Unsubscribes all pending subscriptions.
this.destroyed.next();
Expand Down

0 comments on commit c3163ce

Please sign in to comment.