Skip to content

Commit

Permalink
Merge pull request Tencent#272 from domom/dev
Browse files Browse the repository at this point in the history
fix:clear network list fail in ie 11;
  • Loading branch information
Maizify authored Aug 17, 2019
2 parents f0e936e + 95c0e3e commit 0e92c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/network/network.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class VConsoleNetworkTab extends VConsolePlugin {

// remove dom
for (let id in this.domList) {
this.domList[id].remove();
this.domList[id].parentNode.removeChild(this.domList[id]);
this.domList[id] = undefined;
}
this.domList = {};
Expand Down

0 comments on commit 0e92c14

Please sign in to comment.