We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e47fe commit 1b923cdCopy full SHA for 1b923cd
ui/arduino/store.js
@@ -182,6 +182,12 @@ function store(state, emitter) {
182
await serial.stop()
183
try {
184
state.serialFiles = await serial.listFiles()
185
+ state.serialFiles = state.serialFiles.filter(
186
+ f => f.indexOf('.') !== -1 // Only files with extensions
187
+ )
188
189
+ f => f.indexOf('.') !== 0 // No dot files
190
191
} catch (e) {
192
console.log('error', e)
193
}
0 commit comments