mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -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;
|
||||
}
|
||||
|
||||
let commandOnly = false
|
||||
let commandOnly = false;
|
||||
if (activeBuffer && activeBuffer.type === BufferType.SERVER) {
|
||||
commandOnly = true
|
||||
commandOnly = true;
|
||||
}
|
||||
|
||||
return html`
|
||||
|
|
Loading…
Reference in a new issue