Correct the test to hide bed temperature when no heated bed is present.
@@ -67,7 +67,7 @@ Column
HeatedBedBox
{
visible: {
- if(activePrinter != null && activePrinter.bed_temperature != -1)
+ if(activePrinter != null && activePrinter.bedTemperature != -1)
return true
}