Skip to content

Commit

Permalink
fix(terminal): typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BroKun authored and sunshinesmilelk committed Nov 12, 2023
1 parent 0a29b3c commit 9059603
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
HeaderToolbarVisible,
AutoInsertWhenNoCell,
EnterEditModeWhenAddCell,
CollapserClickActive,
CollapserActive,
MultiSelectionWhenShiftClick,
RightContentFixed,
} from './libro-configuration.js';
Expand All @@ -21,7 +21,7 @@ export class LibroConfigurationContribution implements ConfigurationContribution
CellSideToolbarVisible,
AutoInsertWhenNoCell,
EnterEditModeWhenAddCell,
CollapserClickActive,
CollapserActive,
MultiSelectionWhenShiftClick,
RightContentFixed,
];
Expand Down
2 changes: 1 addition & 1 deletion packages/libro-terminal/src/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class TerminalConnection implements Disposable, Disposed {
/**
* Construct a new terminal session.
*/
constructor(@inject(TerminalOption) options: TerminalOption) {
constructor(@inject(TerminalOption) options: TerminalOption & { name: string }) {
this._name = options.name;
this._createSocket();
}
Expand Down

0 comments on commit 9059603

Please sign in to comment.