mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-02-20 01:11:21 +01:00
Fix typo on extra SD due to #396 thanks to DaKoarli for raising it
This commit is contained in:
BIN
dist/CNC/GRBL/index.html.gz
vendored
BIN
dist/CNC/GRBL/index.html.gz
vendored
Binary file not shown.
BIN
dist/CNC/GRBLHal/index.html.gz
vendored
BIN
dist/CNC/GRBLHal/index.html.gz
vendored
Binary file not shown.
BIN
dist/Plotter/HP-GL/index.html.gz
vendored
BIN
dist/Plotter/HP-GL/index.html.gz
vendored
Binary file not shown.
BIN
dist/Printer3D/Marlin-embedded/index.html.gz
vendored
BIN
dist/Printer3D/Marlin-embedded/index.html.gz
vendored
Binary file not shown.
BIN
dist/Printer3D/Marlin/index.html.gz
vendored
BIN
dist/Printer3D/Marlin/index.html.gz
vendored
Binary file not shown.
BIN
dist/Printer3D/Repetier/index.html.gz
vendored
BIN
dist/Printer3D/Repetier/index.html.gz
vendored
Binary file not shown.
BIN
dist/Printer3D/Smoothieware/index.html.gz
vendored
BIN
dist/Printer3D/Smoothieware/index.html.gz
vendored
Binary file not shown.
BIN
dist/SandTable/GRBL/index.html.gz
vendored
BIN
dist/SandTable/GRBL/index.html.gz
vendored
Binary file not shown.
@@ -17,7 +17,7 @@
|
||||
*/
|
||||
import { h } from "preact"
|
||||
import { webUIbuild } from "../../targets"
|
||||
export const webUIversion = "3.0.0-a72"
|
||||
export const webUIversion = "3.0.0-a73"
|
||||
export const Esp3dVersion = () => (
|
||||
<span>
|
||||
{webUIversion}.{webUIbuild}
|
||||
|
||||
@@ -113,15 +113,17 @@ const commands = {
|
||||
},
|
||||
formatResult: (result) => {
|
||||
const files = formatFileSerialLine(result.content)
|
||||
const isSorted = useUiContextFn.getValue("filessorted")
|
||||
const isSorted = useUiContextFn.getValue("sort_sd_files")
|
||||
return {
|
||||
files: isSorted? sortedFilesList(files, false) : files,
|
||||
status: formatStatus(result.status),
|
||||
}
|
||||
},
|
||||
filterResult: (data, path) => {
|
||||
//console.log(data)
|
||||
const isSorted = useUiContextFn.getValue("sort_sd_files")
|
||||
const res = {}
|
||||
res.files = isSorted? sortedFilesList(filterResultFiles(data.files, path), false) : data.files
|
||||
res.files = isSorted? sortedFilesList(filterResultFiles(data.files, path), false) : filterResultFiles(data.files, path)
|
||||
res.status = formatStatus(data.status)
|
||||
return res
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user