bugfix: min_extrude_temp from config file (extrude/retract buttons on dashboard)

Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
Stefan Dej
2020-09-01 19:32:21 +02:00
parent d6eb97ffe1
commit 16b6ed6000
2 changed files with 2 additions and 3 deletions

View File

@@ -54,7 +54,6 @@
},
computed: {
...mapState({
config: state => state.config,
loadings: state => state.loadings,
printer_state: state => state.printer.print_stats.state,
}),

View File

@@ -267,8 +267,8 @@ export default {
let extruderName = state.printer.toolhead.extruder;
extruder.name = extruderName;
if (state.config[extruderName]) {
extruder.config = state.config[extruderName];
if (state.printer.configfile.config[extruderName]) {
extruder.config = state.printer.configfile.config[extruderName];
}
if (state.printer[extruderName]) {