Skip to content

Commit

Permalink
chore: fixed runner layout issues
Browse files Browse the repository at this point in the history
  • Loading branch information
helloanoop committed Feb 1, 2023
1 parent b76ddcd commit ee4d4e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/bruno-app/src/components/RunnerResults/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export default function RunnerResults({collection}) {
Runner
<IconRun size={20} strokeWidth={1.5} className='ml-2'/>
</div>
<div className="py-2 font-medium test-summary">
Total Requests: {items.length}, Passed: {passedRequests.length}, Failed: {failedRequests.length}
</div>
<div className='flex'>
<div className='flex flex-col flex-1'>
<div className="py-2 font-medium test-summary">
Total Requests: {items.length}, Passed: {passedRequests.length}, Failed: {failedRequests.length}
</div>
{items.map((item) => {
return (
<div key={item.uid}>
Expand Down

0 comments on commit ee4d4e3

Please sign in to comment.