Skip to content

Commit

Permalink
fix: Missing annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
CGNonofr committed Jul 19, 2022
1 parent f9b3f17 commit 5b244ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service-override/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { unsupported } from '../tools'
class LayoutService implements ILayoutService, Pick<IWorkbenchLayoutService, 'isVisible'> {
declare readonly _serviceBrand: undefined

constructor (public container: HTMLElement, private _codeEditorService: ICodeEditorService) {
constructor (public container: HTMLElement, @ICodeEditorService private _codeEditorService: ICodeEditorService) {
window.addEventListener('resize', () => this.layout())
this.layout()
}
Expand Down

0 comments on commit 5b244ca

Please sign in to comment.