Fix completions/FileSystem.ts

Prettier broke it a long time ago.
This commit is contained in:
glacambre 2019-04-09 06:45:21 +02:00
parent 331233b32e
commit b54e08aa42
No known key found for this signature in database
GPG key ID: B9625DB1767553AC

View file

@ -9,11 +9,9 @@ class FileSystemCompletionOption extends Completions.CompletionOptionHTML
constructor(public value: string) {
super()
this.fuseKeys = [value]
this.html = html`
<tr class="FileSystemCompletionOption option">
this.html = html`<tr class="FileSystemCompletionOption option">
<td class="value">${value}</td>
</tr>
`
</tr>`
}
}