File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
ui/arduino2/views/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ function DiskFileList(state, emit) {
71
71
const list = html `
72
72
< div class ="file-list ">
73
73
< div class ="list ">
74
- < div class ="item " onclick =${ ( ) => emit ( 'navigate-disk-parent' ) } > ..</ div >
74
+ < div class ="item " ondblclick =${ ( ) => emit ( 'navigate-disk-parent' ) } > ..</ div >
75
75
${ state . creatingFile == 'disk' ? newFileItem : null }
76
76
${ state . creatingFolder == 'disk' ? newFolderItem : null }
77
77
${ state . diskFiles . map ( DiskFileItem ) }
@@ -163,7 +163,7 @@ function BoardFileList(state, emit) {
163
163
const list = html `
164
164
< div class ="file-list ">
165
165
< div class ="list ">
166
- < div class ="item " onclick =${ ( ) => emit ( 'navigate-board-parent' ) } > ..</ div >
166
+ < div class ="item " ondblclick =${ ( ) => emit ( 'navigate-board-parent' ) } > ..</ div >
167
167
${ state . creatingFile == 'serial' ? newFileItem : null }
168
168
${ state . creatingFolder == 'serial' ? newFolderItem : null }
169
169
${ state . boardFiles . map ( BoardFileItem ) }
You can’t perform that action at this time.
0 commit comments