Skip to content

fix(docs): chains overview query

f8bfc37
Select commit
Loading
Failed to load commit list.
Merged

fix(docs): chains overview query #5425

fix(docs): chains overview query
f8bfc37
Select commit
Loading
Failed to load commit list.
Garnix CI / package app2 [x86_64-linux] succeeded Feb 2, 2026 in 9m 15s

package app2 [x86_64-linux]

package app2 [x86_64-linux] succeeded

Details

Last 100 lines of logs:

app2-0.0.1>                           width: {Math.max(0.5, positions.p95Pos - positions.p5Pos).toFixed(1)}%;
app2-0.0.1>                           top: 11.5px;"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-4 top-1 bg-blue-400 z-10"
app2-0.0.1>                             style="left: {positions.medianPos}%"
app2-0.0.1>                             title="{eventType.label} Median: {formatLatency(eventType.median)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-3 top-1.5 bg-zinc-500"
app2-0.0.1>                             style="left: {positions.p5Pos}%"
app2-0.0.1>                             title="P5: {formatLatency(eventType.p5)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-3 top-1.5 bg-zinc-500"
app2-0.0.1>                             style="left: {positions.p95Pos}%"
app2-0.0.1>                             title="P95: {formatLatency(eventType.p95)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1>                         </div>
app2-0.0.1>                       </div>
app2-0.0.1>                     {/each}
app2-0.0.1>                   </div>
app2-0.0.1>                 </div>
app2-0.0.1> 
app2-0.0.1> /build/source/app2/src/routes/explorer/orbital/charts/LatencyChart.svelte:535:19
app2-0.0.1> Warn: `<div>` with a mousemove or mouseleave handler must have an ARIA role
app2-0.0.1> https://svelte.dev/e/a11y_no_static_element_interactions (svelte)
app2-0.0.1>                 <div class="space-y-1 relative bg-zinc-900 border border-zinc-800 p-2">
app2-0.0.1>                   <div
app2-0.0.1>                     class="relative w-full h-full"
app2-0.0.1>                     onmousemove={(e) => handleMouseMove(e, index)}
app2-0.0.1>                     onmouseleave={handleMouseLeave}
app2-0.0.1>                   >
app2-0.0.1>                     {#if hoveredRoute === index}
app2-0.0.1>                       <div
app2-0.0.1>                         class="absolute top-0 bottom-0 w-0.5 bg-zinc-400 z-20 pointer-events-none"
app2-0.0.1>                         style="left: {scrubberX}%"
app2-0.0.1>                       >
app2-0.0.1>                       </div>
app2-0.0.1>                       <div
app2-0.0.1>                         class="absolute bg-zinc-800 border border-zinc-600 px-1 py-0.5 text-xs text-zinc-300 font-mono z-30 pointer-events-none"
app2-0.0.1>                         style="left: {scrubberX}%; top: {scrubberY - 25}px; transform: translateX({scrubberX < 25 ? '0%' : scrubberX > 75 ? '-100%' : '-50%'})"
app2-0.0.1>                       >
app2-0.0.1>                         {formatLatency(scrubberTime)}
app2-0.0.1>                       </div>
app2-0.0.1>                     {/if}
app2-0.0.1> 
app2-0.0.1>                     {#each item.eventTypes as eventType}
app2-0.0.1>                       {@const routeScale = getRouteScale(item)}
app2-0.0.1>                       {@const positions = getEventPositions(eventType, routeScale)}
app2-0.0.1>                       <div class="flex items-center">
app2-0.0.1>                         <div class="w-full relative h-6">
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute h-0.5 bg-zinc-500"
app2-0.0.1>                             style="left: {positions.p5Pos}%; 
app2-0.0.1>                           width: {Math.max(0.5, positions.p95Pos - positions.p5Pos).toFixed(1)}%;
app2-0.0.1>                           top: 11.5px;"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-4 top-1 bg-blue-400 z-10"
app2-0.0.1>                             style="left: {positions.medianPos}%"
app2-0.0.1>                             title="{eventType.label} Median: {formatLatency(eventType.median)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-3 top-1.5 bg-zinc-500"
app2-0.0.1>                             style="left: {positions.p5Pos}%"
app2-0.0.1>                             title="P5: {formatLatency(eventType.p5)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1> 
app2-0.0.1>                           <div
app2-0.0.1>                             class="absolute w-0.5 h-3 top-1.5 bg-zinc-500"
app2-0.0.1>                             style="left: {positions.p95Pos}%"
app2-0.0.1>                             title="P95: {formatLatency(eventType.p95)}"
app2-0.0.1>                           >
app2-0.0.1>                           </div>
app2-0.0.1>                         </div>
app2-0.0.1>                       </div>
app2-0.0.1>                     {/each}
app2-0.0.1>                   </div>
app2-0.0.1>                 </div>
app2-0.0.1> 
app2-0.0.1> ====================================
app2-0.0.1> svelte-check found 0 errors and 12 warnings in 7 files
app2-0.0.1> Running phase: installPhase
app2-0.0.1> Running phase: fixupPhase
app2-0.0.1> shrinking RPATHs of ELF executables and libraries in /nix/store/qabac16a81j15hbipdk8rm7y4vl9vmdf-app2-0.0.1
app2-0.0.1> checking for references to /build/ in /nix/store/qabac16a81j15hbipdk8rm7y4vl9vmdf-app2-0.0.1...
app2-0.0.1> patching script interpreter paths in /nix/store/qabac16a81j15hbipdk8rm7y4vl9vmdf-app2-0.0.1