Skip to content

Commit 72742a9

Browse files
committed
Fix typo on extra SD due to #396 thanks to DaKoarli for raising it
1 parent aedeff9 commit 72742a9

File tree

10 files changed

+5
-3
lines changed

10 files changed

+5
-3
lines changed

dist/CNC/GRBL/index.html.gz

0 Bytes
Binary file not shown.

dist/CNC/GRBLHal/index.html.gz

0 Bytes
Binary file not shown.

dist/Plotter/HP-GL/index.html.gz

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
-21 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

dist/SandTable/GRBL/index.html.gz

0 Bytes
Binary file not shown.

src/components/App/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
import { h } from "preact"
1919
import { webUIbuild } from "../../targets"
20-
export const webUIversion = "3.0.0-a72"
20+
export const webUIversion = "3.0.0-a73"
2121
export const Esp3dVersion = () => (
2222
<span>
2323
{webUIversion}.{webUIbuild}

src/targets/Printer3D/Marlin/SDEXT-source.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,17 @@ const commands = {
113113
},
114114
formatResult: (result) => {
115115
const files = formatFileSerialLine(result.content)
116-
const isSorted = useUiContextFn.getValue("filessorted")
116+
const isSorted = useUiContextFn.getValue("sort_sd_files")
117117
return {
118118
files: isSorted? sortedFilesList(files, false) : files,
119119
status: formatStatus(result.status),
120120
}
121121
},
122122
filterResult: (data, path) => {
123+
//console.log(data)
124+
const isSorted = useUiContextFn.getValue("sort_sd_files")
123125
const res = {}
124-
res.files = isSorted? sortedFilesList(filterResultFiles(data.files, path), false) : data.files
126+
res.files = isSorted? sortedFilesList(filterResultFiles(data.files, path), false) : filterResultFiles(data.files, path)
125127
res.status = formatStatus(data.status)
126128
return res
127129
},

0 commit comments

Comments
 (0)