Skip to content

Commit 84abfc2

Browse files
committed
Missing await in ForwardPortAction
1 parent e8b83f4 commit 84abfc2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/contrib/remote/browser/tunnelView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ namespace ForwardPortAction {
603603
remoteExplorerService.tunnelModel.forward(arg.remote);
604604
} else {
605605
const viewsService = accessor.get(IViewsService);
606-
viewsService.openView(TunnelPanel.ID, true);
606+
await viewsService.openView(TunnelPanel.ID, true);
607607
remoteExplorerService.setEditable(undefined, {
608608
onFinish: (value, success) => {
609609
if (success) {

0 commit comments

Comments
 (0)