From ac348ed40987d70e8e038a170c478e2c69324b5a Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sun, 23 Aug 2020 04:36:58 -0400 Subject: [PATCH] Fixes pull/push/fetch on History view --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9cfd918..ed71f16 100644 --- a/package.json +++ b/package.json @@ -5352,17 +5352,17 @@ "view/title": [ { "command": "gitlens.pushRepositories", - "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories|history):/", + "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories:|history)/", "group": "navigation@10" }, { "command": "gitlens.pullRepositories", - "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories|history):/", + "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories:|history)/", "group": "navigation@11" }, { "command": "gitlens.fetchRepositories", - "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories|history):/", + "when": "gitlens:hasRemotes && !gitlens:readonly && view =~ /^gitlens\\.views\\.(repositories:|history)/", "group": "navigation@12" }, {