Unverified Commit 993c14a0 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #2587 from ethereum/fix/#2524

typo fix to disappear file creation modal
parents dc62bc9f 8424a3ed
...@@ -599,7 +599,7 @@ fileExplorer.prototype.createNewFile = function (parentFolder = 'browser') { ...@@ -599,7 +599,7 @@ fileExplorer.prototype.createNewFile = function (parentFolder = 'browser') {
} else { } else {
self._deps.fileManager.switchFile(newName) self._deps.fileManager.switchFile(newName)
if (newName.includes('_test.sol')) { if (newName.includes('_test.sol')) {
self.event.trigger('newTestFileCreated', [newName]) self.events.trigger('newTestFileCreated', [newName])
} }
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment