update

Changed files
+4 -7
src
+1 -1
src/App.svelte
··· 105 <td><span class="font-mono text-xs">{#if instance.status?.bundles?.head_hash}{instance.status?.bundles?.head_hash.slice(0, 7)}{/if}</span></td> 106 <td><span class="font-mono text-xs">{#if instance.status?.bundles?.root_hash}{instance.status?.bundles?.root_hash.slice(0, 7)}{/if}</span></td> 107 <td>{#if instance.status?.server?.version}{instance.status?.server?.version}{/if}</td> 108 - <td class="opacity-50">{#if instance.status?.responseTime}{instance.status?.responseTime}ms{/if}</td> 109 </tr> 110 {/each} 111 </tbody>
··· 105 <td><span class="font-mono text-xs">{#if instance.status?.bundles?.head_hash}{instance.status?.bundles?.head_hash.slice(0, 7)}{/if}</span></td> 106 <td><span class="font-mono text-xs">{#if instance.status?.bundles?.root_hash}{instance.status?.bundles?.root_hash.slice(0, 7)}{/if}</span></td> 107 <td>{#if instance.status?.server?.version}{instance.status?.server?.version}{/if}</td> 108 + <td class="opacity-50">{#if instance.status?.responseTime}{Math.round(instance.status?.responseTime)}ms{/if}</td> 109 </tr> 110 {/each} 111 </tbody>
+3 -6
src/instances.json
··· 1 [ 2 { 3 - "url": "https://plcbundle.atscan.net", 4 - "modern": true 5 }, 6 { 7 - "url": "https://plc.j4ck.xyz", 8 - "modern": true 9 }, 10 { 11 - "url": "https://plc.indexx.dev", 12 - "modern": true 13 } 14 ]
··· 1 [ 2 { 3 + "url": "https://plcbundle.atscan.net" 4 }, 5 { 6 + "url": "https://plc.j4ck.xyz" 7 }, 8 { 9 + "url": "https://plc.indexx.dev" 10 } 11 ]