From 4c8c081c31fbc2d25d22795e0576d4cb03833d06 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 29 Apr 2019 16:32:43 +0100 Subject: [PATCH] Revert branchList focus call change --- .../editor-client/src/js/ui/projects/tab-versionControl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/projects/tab-versionControl.js b/packages/node_modules/@node-red/editor-client/src/js/ui/projects/tab-versionControl.js index 102716746..6279558d4 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/ui/projects/tab-versionControl.js +++ b/packages/node_modules/@node-red/editor-client/src/js/ui/projects/tab-versionControl.js @@ -582,7 +582,7 @@ RED.sidebar.versionControl = (function() { localBranchBox.show(); setTimeout(function() { localBranchBox.css("height","215px"); - localBranchList.trigger("focus"); + localBranchList.focus(); },100); } }) @@ -775,7 +775,7 @@ RED.sidebar.versionControl = (function() { setTimeout(function() { remoteBranchSubRow.height(180); remoteBox.css("height","445px"); - remoteBranchList.trigger("focus"); + remoteBranchList.focus(); },100); } });