Skip to content

Commit

Permalink
Merge branch 'beta-4.52.2' into patch-17
Browse files Browse the repository at this point in the history
donavanbecker authored Nov 9, 2023
2 parents 60b693f + 25cb794 commit 75d30eb
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -237,9 +237,12 @@ export class ManagePluginsModalComponent implements OnInit, OnDestroy {
this.io.request('get-homebridge-child-bridge-status').subscribe((data) => {
this.childBridges = data;
});
return this.childBridges;
}

public async onRestartChildBridgeClick(bridge) {
const childBridges = this.getChildBridgeMetadata();
const childBridge = childBridges.find((x) => x.username === bridge.username);
bridge.restartInProgress = true;
try {
await this.io.request('restart-child-bridge', bridge.username).toPromise();
2 changes: 1 addition & 1 deletion ui/src/app/shared/layout/layout.component.html
Original file line number Diff line number Diff line change
@@ -98,7 +98,7 @@
{{ 'menu.linux.label_shutdown_server' | translate }}
</a>
<a href="javascript:void(0)" class="dropdown-item" (click)="$auth.logout()" *ngIf="$settings.formAuth">
{{ 'menu.tooltip_logout' | translate }}
{{ 'menu.tooltip_logout' | translate }} - {{ $auth.user.username }}
</a>
</div>
</li>

0 comments on commit 75d30eb

Please sign in to comment.