An app for logging board climbs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: cleanup styles

+9 -5
+1 -1
deno.json
··· 1 1 { 2 - "version": "0.0.6", 2 + "version": "0.1.0", 3 3 "compilerOptions": { 4 4 "lib": [ 5 5 "deno.ns",
+8 -4
www/routes/home.ts
··· 323 323 listEl.innerHTML = html` 324 324 <div class="bm-count"> 325 325 ${this.filtered.length 326 - .toLocaleString()} benchmark${this.filtered.length === 1 ? '' : 's'} 326 + .toLocaleString()}&#32;benchmark${this.filtered.length === 1 327 + ? '' 328 + : 's'} 327 329 </div> 328 330 ${safe( 329 331 visible.map((b) => { ··· 350 352 </button> 351 353 `.toString() 352 354 }).join(''), 353 - )} ${remaining > 0 354 - ? `<button id="bm-load-more">Load more (${remaining.toLocaleString()} remaining)</button>` 355 - : ''} 355 + )} ${safe( 356 + remaining > 0 357 + ? `<button id="bm-load-more">Load more (${remaining.toLocaleString()} remaining)</button>` 358 + : '', 359 + )} 356 360 `.toString() 357 361 } 358 362