naming conventions

This commit is contained in:
sanjayk03-dev
2024-03-27 01:55:11 +05:30
parent 48e1fdf0df
commit e7f0c259a2
5 changed files with 40 additions and 42 deletions

View File

@@ -76,7 +76,7 @@ script#macros-template(type="text/x-template")
v-model="tab",@change="clearMacros",
style="width:250px;height:50px;border-radius:10px;padding-left:15px;font-weight:bold;margin-left:30px")
option( selected='' value='0') Select a Macros
option(v-for="(index,file) in macrosList", :value="index+1") {{file}}
option(v-for="(index,file) in macros_list", :value="index+1") {{file}}
.macros-form
p.title Macros Name
.input-container
@@ -91,7 +91,7 @@ script#macros-template(type="text/x-template")
v-model="fileName",@change="loadMacrosGcode", :disabled="!is_ready",
style="max-width:100%;height:40px;border-radius:5px")
option( selected='' value='default') Create G-Code
option(v-for="file in macrosGCodeList", :value="file") {{file}}
option(v-for="file in macros_gcode_list", :value="file") {{file}}
button.config-button.button-blue(title="Upload a new GCode program.", @click="open",
:disabled="!is_ready") Upload