Skip to content

Commit

Permalink
Fix empty firmware req
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneclaes committed Oct 25, 2020
1 parent af71238 commit 4f9293b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/widgets/Maslow/MaslowPanels.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class MaslowPanels extends PureComponent {
</Button>
</ToastNotification>
)}
{firmware && hardware.hasFirmware && (
{firmware && hardware.hasFirmware && firmware.requiredVersion && (
<div style={{ marginBottom: 10 }}>
<FirmwareRequirement firmware={firmware} compatibility={compatibility} />
</div>
Expand Down

0 comments on commit 4f9293b

Please sign in to comment.