This commit is contained in:
sanjayk03-dev
2024-03-27 17:32:16 +05:30
parent 66799bd0be
commit f470278840
3 changed files with 26 additions and 13 deletions

View File

@@ -328,15 +328,16 @@ script#control-view-template(type="text/x-template")
.fa.fa-trash
|  Selected
select(title="Select previously uploaded GCode programs.",
v-model="state.folder", :disabled="!is_ready",
style="max-width:100%")
option(v-for="file in gcode_folders", :value="file") {{file}}
.drop-down-container
select(title="Select previously uploaded GCode folder.",
v-model="state.folder", :disabled="!is_ready",
style="max-width:100%")
option(v-for="file in gcode_folders", :value="file") {{file}}
select(title="Select previously uploaded GCode programs.",
v-model="state.selected", @change="load", :disabled="!is_ready",
style="max-width:100%")
option(v-for="file in gcode_files", :value="file") {{file}}
select(title="Select previously uploaded GCode programs.",
v-model="state.selected", @change="load", :disabled="!is_ready",
style="max-width:100%")
option(v-for="file in gcode_files", :value="file") {{file}}
.progress(v-if="toolpath_progress && toolpath_progress < 1",
title="Simulating GCode to check for errors, calculate ETA and " +