File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -172,13 +172,15 @@ export class WorkspaceMonitor implements vscode.Disposable {
172172 private maybeNotifyOutdated ( workspace : Workspace ) {
173173 if ( ! this . notifiedOutdated && workspace . outdated ) {
174174 this . notifiedOutdated = true ;
175-
175+
176176 // Check if update notifications are disabled
177- const disableNotifications = vscode . workspace . getConfiguration ( "coder" ) . get < boolean > ( "disableUpdateNotifications" , false ) ;
177+ const disableNotifications = vscode . workspace
178+ . getConfiguration ( "coder" )
179+ . get < boolean > ( "disableUpdateNotifications" , false ) ;
178180 if ( disableNotifications ) {
179181 return ;
180182 }
181-
183+
182184 this . restClient
183185 . getTemplate ( workspace . template_id )
184186 . then ( ( template ) => {
You can’t perform that action at this time.
0 commit comments