tabminal 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/public/app.js +1 -1
package/package.json
CHANGED
package/public/app.js
CHANGED
|
@@ -533,7 +533,7 @@ class EditorManager {
|
|
|
533
533
|
const filePath = this.currentSession.editorState.activeFilePath;
|
|
534
534
|
if (!filePath) return;
|
|
535
535
|
|
|
536
|
-
const pending = getPendingSession(this.currentSession.
|
|
536
|
+
const pending = getPendingSession(this.currentSession.key);
|
|
537
537
|
pending.fileWrites.set(filePath, this.editor.getValue());
|
|
538
538
|
});
|
|
539
539
|
|