We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7239875 commit 75ec7fdCopy full SHA for 75ec7fd
vscode-ext/package.json
@@ -3,7 +3,7 @@
3
"publisher": "solarspace",
4
"displayName": "Solar Space",
5
"description": "Sharable URLs for GitHub codespaces",
6
- "version": "0.0.4",
+ "version": "0.0.5",
7
"license": "GPL-3.0-only",
8
"engines": {
9
"vscode": "^1.90.0"
vscode-ext/src/extension.ts
@@ -77,7 +77,7 @@ async function pendingChanges() : Promise<boolean> {
77
const bPath = b.rootUri.path.split('/').length;
78
return aPath - bPath;
79
})[0];
80
- if (rootRepo.state.workingTreeChanges.length > 0 || rootRepo.state.indexChanges.length > 0) {
+ if (rootRepo.state.workingTreeChanges.length > 0 || (rootRepo.state.HEAD?.ahead ?? 0 > 0)) {
81
return true;
82
}
83
return false;
0 commit comments