Skip to content

Commit

Permalink
Fixes bug (#236620)
Browse files Browse the repository at this point in the history
  • Loading branch information
hediet authored Dec 19, 2024
1 parent a6210a0 commit 8be4be0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ export class InlineEditsGutterIndicator extends Disposable {

private readonly _tabAction = derived(this, reader => {
const m = this._model.read(reader);
if (m && m.tabShouldAcceptInlineEdit.read(reader)) { return 'accept' as const; }
if (m && m.tabShouldJumpToInlineEdit.read(reader)) { return 'jump' as const; }
if (m && m.tabShouldAcceptInlineEdit.read(reader)) { return 'accept' as const; }
return 'inactive' as const;
});

Expand Down

0 comments on commit 8be4be0

Please sign in to comment.