Skip to content

Commit

Permalink
fix:electron service quote error
Browse files Browse the repository at this point in the history
  • Loading branch information
scarqin committed Apr 29, 2022
1 parent f16031f commit 445c06c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</nz-input-group>
</header>
<!-- Fixed Group -->
<div class="group_container fixed_group_tree pt10" *ngIf="this.electron.isElectron">
<div class="group_container fixed_group_tree pt10" *ngIf="electron.isElectron">
<nz-tree
[nzData]="fixedTreeNode"
[nzSelectedKeys]="nzSelectedKeys"
Expand All @@ -47,7 +47,7 @@
</div>
</ng-template>
</div>
<div class="bbd" *ngIf="this.electron.isElectron"></div>
<div class="bbd" *ngIf="electron.isElectron"></div>
<!-- Custom Group -->
<div class="group_container group_tree pt10">
<nz-tree
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class ApiGroupTreeComponent implements OnInit, OnDestroy {
private modalService: ModalService,
private messageService: MessageService,
private storage: StorageService,
private electron: ElectronService
public electron: ElectronService
) {}
ngOnInit(): void {
this.buildGroupTreeData();
Expand Down

0 comments on commit 445c06c

Please sign in to comment.