await refresh

pull/1585/head
filip mertens 3 years ago
parent 097a281e38
commit 23a0a3cf19
  1. 6
      apps/remix-ide/src/app/files/dgitProvider.js

@ -90,7 +90,7 @@ class DGitProvider extends Plugin {
...await this.getGitConfig(), ...await this.getGitConfig(),
...cmd ...cmd
}) })
this.call('fileManager', 'refresh') await this.call('fileManager', 'refresh')
} }
async rm (cmd) { async rm (cmd) {
@ -98,7 +98,7 @@ class DGitProvider extends Plugin {
...await this.getGitConfig(), ...await this.getGitConfig(),
...cmd ...cmd
}) })
this.call('fileManager', 'refresh') await this.call('fileManager', 'refresh')
} }
async checkout (cmd) { async checkout (cmd) {
@ -131,7 +131,7 @@ class DGitProvider extends Plugin {
...await this.getGitConfig(), ...await this.getGitConfig(),
...cmd ...cmd
}) })
this.call('fileManager', 'refresh') await this.call('fileManager', 'refresh')
return status return status
} }

Loading…
Cancel
Save