Skip to content

Commit

Permalink
more minor fixes (#1661)
Browse files Browse the repository at this point in the history
  • Loading branch information
wizardlyhel authored Jan 19, 2024
1 parent 759fd91 commit 0591c2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/virtual-routes/assets/debug-network.css
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ button:active.primary {
}

.error {
color: #B32720;
color: #b32720;
}

@media (max-width: 940px) {
Expand Down
4 changes: 3 additions & 1 deletion packages/cli/src/virtual-routes/components/RequestTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ export function RequestTable({
))}
</div>
<div id="request-table__footer">
{totalMainRequests} request | {totalSubRequest} sub request
{totalMainRequests} request{totalMainRequests > 1 ? 's' : ''} |{' '}
{totalSubRequest} sub request
{totalSubRequest > 1 ? 's' : ''}
</div>
</div>
</div>
Expand Down

0 comments on commit 0591c2d

Please sign in to comment.