Skip to content

Commit 37c80c9

Browse files
committed
vscode: Add missing semicolons
See #2359
1 parent be37821 commit 37c80c9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ci/dev/vscode.patch

+5-5
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ index 096b9e23493539c9937940a56e555d95bbae38d9..ef37e614004f550f7b64eacd362f6894
769769
remove(key: string, scope: StorageScope): void {
770770
diff --git a/src/vs/server/browser/client.ts b/src/vs/server/browser/client.ts
771771
new file mode 100644
772-
index 0000000000000000000000000000000000000000..667ca961830feaf6fc5e5bb7ef2df3b8be97b176
772+
index 0000000000000000000000000000000000000000..c6eef331346ebc244a26e8b1e5919d192225b971
773773
--- /dev/null
774774
+++ b/src/vs/server/browser/client.ts
775775
@@ -0,0 +1,237 @@
@@ -924,7 +924,7 @@ index 0000000000000000000000000000000000000000..667ca961830feaf6fc5e5bb7ef2df3b8
924924
+ }
925925
+
926926
+ const logService = (services.get(ILogService) as ILogService);
927-
+ const storageService = (services.get(IStorageService) as IStorageService)
927+
+ const storageService = (services.get(IStorageService) as IStorageService);
928928
+ const getUpdate = async (): Promise<void> => {
929929
+ logService.debug("Checking for update...");
930930
+
@@ -945,7 +945,7 @@ index 0000000000000000000000000000000000000000..667ca961830feaf6fc5e5bb7ef2df3b8
945945
+ const lastNoti = storageService.getNumber("csLastUpdateNotification", StorageScope.GLOBAL);
946946
+ if (lastNoti) {
947947
+ // Only remind them again after two days.
948-
+ const timeout = 1000*60*24*2
948+
+ const timeout = 1000*60*24*2;
949949
+ const threshold = lastNoti + timeout;
950950
+ if (Date.now() < threshold) {
951951
+ return;
@@ -3906,15 +3906,15 @@ index 738ce140c1af76ee0017c59cc883578e966f5348..80833b7023ed5795bb3de303b54ec08d
39063906

39073907
.monaco-workbench .part.editor > .content .welcomePage .splash ul {
39083908
diff --git a/src/vs/workbench/contrib/welcome/page/browser/welcomePage.ts b/src/vs/workbench/contrib/welcome/page/browser/welcomePage.ts
3909-
index 4a61a79fe447e2aa238af568791bff1e0cec4d29..791b63342f476f1baba9d31b040d3ef589e3f70a 100644
3909+
index 4a61a79fe447e2aa238af568791bff1e0cec4d29..69cc2e4331a3b04d05d79632920f5c5bbfa924e8 100644
39103910
--- a/src/vs/workbench/contrib/welcome/page/browser/welcomePage.ts
39113911
+++ b/src/vs/workbench/contrib/welcome/page/browser/welcomePage.ts
39123912
@@ -328,7 +328,7 @@ class WelcomePage extends Disposable {
39133913

39143914
const prodName = container.querySelector('.welcomePage .title .caption') as HTMLElement;
39153915
if (prodName) {
39163916
- prodName.textContent = this.productService.nameLong;
3917-
+ prodName.textContent = `code-server v${this.productService.codeServerVersion}`
3917+
+ prodName.textContent = `code-server v${this.productService.codeServerVersion}`;
39183918
}
39193919

39203920
recentlyOpened.then(({ workspaces }) => {

0 commit comments

Comments
 (0)