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 {
|
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 === "") {
|
if (combined === "") {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -493,7 +493,8 @@ const openSearch = (): void => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
lastFocusedSearchOpener = document.activeElement instanceof HTMLElement ? document.activeElement : null;
|
lastFocusedSearchOpener =
|
||||||
|
document.activeElement instanceof HTMLElement ? document.activeElement : null;
|
||||||
setSearchState(true);
|
setSearchState(true);
|
||||||
searchInput.value = "";
|
searchInput.value = "";
|
||||||
lastQuery = "";
|
lastQuery = "";
|
||||||
|
|||||||
Reference in New Issue
Block a user