Skip to content

Commit 916c036

Browse files
authored
fix: add missing semicolon
1 parent 772d562 commit 916c036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/resources/META-INF/frontend/fc-xterm/xterm-element.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
import { LitElement, html, TemplateResult } from 'lit-element';
2121

22-
import { Terminal, ITerminalAddon, IDisposable } from 'xterm'
22+
import { Terminal, ITerminalAddon, IDisposable } from 'xterm';
2323
import { ITerminal } from 'xterm/src/browser/Types';
2424

2525
type integer = number;
@@ -205,4 +205,4 @@ export class XTermElement extends LitElement implements TerminalMixin {
205205
return this.customKeyEventHandlers.register(customKey, handler).id;
206206
}
207207

208-
}
208+
}

0 commit comments

Comments
 (0)