We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 665535c commit 2d10752Copy full SHA for 2d10752
src/components/Benchmarks/Result.tsx
@@ -30,7 +30,7 @@ const Result: React.FC<LayoutProps> = ({
30
isLoading,
31
cyclomaticComplexity,
32
}) => {
33
- if (status !== 'done' && status !== 'error') {
+ if (status !== 'done' && status !== 'failed') {
34
return (
35
<div className="flex justify-center dark:text-gray-100">
36
<Loader
@@ -91,7 +91,7 @@ interface OutputsComponentProps {
91
const OutputsComponent: React.FC<OutputsComponentProps> = ({ text, value }) => {
92
if (value) {
93
94
- <div>
+ <div className="mt-4">
95
<b className="dark:text-gray-100">{text}:</b>
96
<div
97
className={'h-auto p-4 mt-2 w-full bg-gray-800 rounded-lg text-white'}
0 commit comments