style: apply formatter changes
This commit is contained in:
@@ -76,7 +76,8 @@ async function main(): Promise<void> {
|
||||
}
|
||||
|
||||
function summarizeFailure(stderr: Uint8Array, stdout: Uint8Array): string {
|
||||
const combined = `${Buffer.from(stderr).toString("utf8")}${Buffer.from(stdout).toString("utf8")}`.trim();
|
||||
const combined =
|
||||
`${Buffer.from(stderr).toString("utf8")}${Buffer.from(stdout).toString("utf8")}`.trim();
|
||||
if (combined === "") {
|
||||
return "";
|
||||
}
|
||||
|
||||
@@ -493,7 +493,8 @@ const openSearch = (): void => {
|
||||
return;
|
||||
}
|
||||
|
||||
lastFocusedSearchOpener = document.activeElement instanceof HTMLElement ? document.activeElement : null;
|
||||
lastFocusedSearchOpener =
|
||||
document.activeElement instanceof HTMLElement ? document.activeElement : null;
|
||||
setSearchState(true);
|
||||
searchInput.value = "";
|
||||
lastQuery = "";
|
||||
|
||||
Reference in New Issue
Block a user