Skip to content

Commit

Permalink
Fix missing break in switch (#10829)
Browse files Browse the repository at this point in the history
Bug introduce when merging #10632
  • Loading branch information
fcollonval committed Aug 13, 2021
1 parent 0e42117 commit f52f667
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/codemirror/src/editor.ts
Expand Up @@ -1606,6 +1606,7 @@ namespace Private {
break;
case 'showTrailingSpace':
(editor.setOption as any)(option, value);
break;
default:
(editor.setOption as any)(option, value);
break;
Expand Down

0 comments on commit f52f667

Please sign in to comment.