Skip to content

Commit

Permalink
fix: display of network request time (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
lutejka committed Mar 15, 2024
1 parent 6fca841 commit 0e95858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/client/components/Cell/CellNetworkRequests.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const requestsMapped = computed(() => {
<div v-for="(item, key) in group.items" :key="key" class="mb-1 flex text-xs ">
<span class="break-all opacity-90 flex-grow"><a :href="item.url" class="hover:no-underline underline">{{ item.url.replace(website, '') }}</a></span>
<span class="opacity-70 whitespace-nowrap ml-1 flex-shrink break-none">{{ formatBytes(item.transferSize) }}</span>
<span class="opacity-70 whitespace-nowrap ml-1 flex-shrink">{{ Math.round(item.endTime - item.startTime) }}ms</span>
<span class="opacity-70 whitespace-nowrap ml-1 flex-shrink">{{ Math.round(item.networkEndTime - item.networkRequestTime) }}ms</span>
</div>
</template>
</tooltip>
Expand Down

0 comments on commit 0e95858

Please sign in to comment.