Skip to content

Commit 7050002

Browse files
committed
Add missing semicolon
1 parent 4563517 commit 7050002

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

patches/display-language.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
250250
/* ----- server setup ----- */
251251

252252
@@ -103,6 +104,7 @@ export interface ServerParsedArgs {
253-
'auth'?: string
253+
'auth'?: string;
254254
'disable-file-downloads'?: boolean;
255255
'disable-file-uploads'?: boolean;
256256
+ 'locale'?: string

patches/external-file-actions.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
102102
@@ -99,6 +101,8 @@ export interface ServerParsedArgs {
103103
/* ----- code-server ----- */
104104
'disable-update-check'?: boolean;
105-
'auth'?: string
105+
'auth'?: string;
106106
+ 'disable-file-downloads'?: boolean;
107107
+ 'disable-file-uploads'?: boolean;
108108

patches/logout.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
3232
export interface ServerParsedArgs {
3333
/* ----- code-server ----- */
3434
'disable-update-check'?: boolean;
35-
+ 'auth'?: string
35+
+ 'auth'?: string;
3636

3737
/* ----- server setup ----- */
3838

0 commit comments

Comments
 (0)