Skip to content

Commit 7c0931e

Browse files
committed
Run format on a previously unformatted file
1 parent 7ae836e commit 7c0931e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

resources/developer-mode.mjs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ export function createUIForIterationCount() {
8888
return label;
8989
}
9090

91-
9291
export function createUIForSuites() {
9392
const control = document.createElement("nav");
9493
const ol = document.createElement("ol");
@@ -186,14 +185,14 @@ export function createUIForSuites() {
186185

187186
function createUIForRun() {
188187
let button = document.createElement("button");
189-
button.textContent = `Start Test`;
188+
button.textContent = "Start Test";
190189
button.onclick = (event) => {
191190
globalThis.benchmarkClient.start();
192-
}
191+
};
193192
let buttons = document.createElement("div");
194193
buttons.className = "button-bar";
195194
buttons.appendChild(button);
196-
return buttons
195+
return buttons;
197196
}
198197

199198
function updateURL() {

0 commit comments

Comments
 (0)