Skip to content

Commit

Permalink
className instead of class for JSX
Browse files Browse the repository at this point in the history
  • Loading branch information
chigozienri committed Jul 2, 2024
1 parent 5fe818f commit b141a60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,9 @@ function ParameterForm({setPythonCode, pythonOutput, dabAnalysisImages, setDabAn
return (
<div className="flex items-center justify-between w-full">
<div className="w-full">
<div class="flex justify-between mb-1">
<span class="text-base font-medium text-gray-700 dark:text-white">Analysis in progress...</span>
<span class="text-sm font-medium text-gray-700 dark:text-white">{progress['imagesCompleted']} / {progress['total']}</span>
<div className="flex justify-between mb-1">
<span className="text-base font-medium text-gray-700 dark:text-white">Analysis in progress...</span>
<span className="text-sm font-medium text-gray-700 dark:text-white">{progress['imagesCompleted']} / {progress['total']}</span>
</div>
<div className="w-full bg-gray-200 rounded-full h-2.5 dark:bg-gray-700">
<div className="bg-blue-600 h-2.5 rounded-full" style={{width: progress.imagesCompleted/progress.total*100 + '%'}}></div>
Expand Down

0 comments on commit b141a60

Please sign in to comment.