mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-25 00:38:12 -05:00
components/app: fix missing semicolons
This commit is contained in:
parent
26cc073f41
commit
08578c9a21
1 changed files with 2 additions and 2 deletions
|
@ -1840,9 +1840,9 @@ export default class App extends Component {
|
||||||
composerReadOnly = true;
|
composerReadOnly = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
let commandOnly = false
|
let commandOnly = false;
|
||||||
if (activeBuffer && activeBuffer.type === BufferType.SERVER) {
|
if (activeBuffer && activeBuffer.type === BufferType.SERVER) {
|
||||||
commandOnly = true
|
commandOnly = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
|
|
Loading…
Reference in a new issue