File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -652,6 +652,7 @@ button.small .icon {
652652 transition : all 0.25s ;
653653 pointer-events : none;
654654 opacity : 0 ;
655+ text-align : center;
655656}
656657
657658# overlay .open {
Original file line number Diff line number Diff line change @@ -1198,7 +1198,7 @@ async function store(state, emitter) {
11981198 await serial . uploadFile (
11991199 srcPath , destPath ,
12001200 ( e ) => {
1201- state . transferringProgress = e
1201+ state . transferringProgress = ` ${ file . fileName } : ${ e } `
12021202 emitter . emit ( 'render' )
12031203 }
12041204 )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function Overlay(state, emit) {
1010 if ( state . isConnecting ) overlay = html `< div id ="overlay " class ="open "> < p > Connecting...</ p > </ div > `
1111 if ( state . isLoadingFiles ) overlay = html `< div id ="overlay " class ="open "> < p > Loading files...</ p > </ div > `
1212 if ( state . isSaving ) overlay = html `< div id ="overlay " class ="open "> < p > Saving file... ${ state . savingProgress } </ p > </ div > `
13- if ( state . isTransferring ) overlay = html `< div id ="overlay " class ="open "> < p > Transferring file... ${ state . transferringProgress } </ p > </ div > `
13+ if ( state . isTransferring ) overlay = html `< div id ="overlay " class ="open "> < p > Transferring file< br > < br > ${ state . transferringProgress } </ p > </ div > `
1414
1515 return overlay
1616}
You can’t perform that action at this time.
0 commit comments