File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class AppEditor extends Tonic {
65
65
try {
66
66
await fs . promises . writeFile ( projectNode . id , data )
67
67
} catch ( err ) {
68
- console . error ( `Unable to write to ${ dest } ` , err )
68
+ console . error ( `Unable to write to ${ projectNode . id } ` , err )
69
69
}
70
70
71
71
app . reloadPreviewWindows ( )
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ class AppProject extends Tonic {
153
153
async mouseup ( e ) {
154
154
const mouseDragged = this . mouseIsDragging
155
155
this . resetMouse ( )
156
+ const notifications = document . querySelector ( '#notifications' )
156
157
157
158
if ( mouseDragged ) {
158
159
this . load ( )
@@ -307,7 +308,7 @@ class AppProject extends Tonic {
307
308
input . setAttribute ( 'spellcheck' , 'false' )
308
309
input . addEventListener ( 'blur' , ( ) => {
309
310
container . innerHTML = ''
310
- container . textContent = n . writelnode . label
311
+ container . textContent = node . label
311
312
} )
312
313
313
314
container . innerHTML = ''
You can’t perform that action at this time.
0 commit comments