[source/completions:style] add trailing commas

This commit is contained in:
Maddison Hellstrom 2020-04-25 21:02:29 -07:00
parent 997de8a76b
commit 8697b7a481
1 changed files with 2 additions and 2 deletions

View File

@ -286,7 +286,7 @@ completions.do.callback = (response) => Object.entries(JSON.parse(response.text)
}
return createSuggestionItem(
`<div><div class="title" style="color:${color}"><strong>${symbol}${escape(domain)}</strong></div></div>`,
{ url: `https://domainr.com/${domain}` }
{ url: `https://domainr.com/${domain}` },
)
})
@ -447,7 +447,7 @@ completions.wp.callback = (response) => Object.values(JSON.parse(response.text).
</div>
</div>
`,
{ url: p.fullurl }
{ url: p.fullurl },
)
})