Skip to content

Commit

Permalink
minor UI bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rs0n committed Oct 31, 2023
1 parent add7bd4 commit 8b82b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/Components/Logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Logging = props => {
</div>
<div className="bg-secondary workTableStyle col-8 pt-3 pl-3">
{
loaded && logs[currentStep]['logFile'].map((log, i) => {
logs.length > 0 && logs[currentStep]['logFile'].map((log, i) => {
return (
<span style={{display: "block"}}>{log}</span>
)
Expand Down

0 comments on commit 8b82b96

Please sign in to comment.