Skip to content

Commit 264d98e

Browse files
committed
f: fix bug
1 parent 23308de commit 264d98e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/gitpod-protocol/src/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ export interface WithEditorContext extends WorkspaceContext {
871871

872872
export namespace WithEditorContext {
873873
export function is(context: any): context is WithEditorContext {
874-
return context && "editor" in context;
874+
return context && "ide" in context;
875875
}
876876
}
877877

0 commit comments

Comments
 (0)