Skip to content

Commit 0e92c14

Browse files
authored
Merge pull request #272 from domom/dev
fix:clear network list fail in ie 11;
2 parents f0e936e + 95c0e3e commit 0e92c14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network/network.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class VConsoleNetworkTab extends VConsolePlugin {
130130

131131
// remove dom
132132
for (let id in this.domList) {
133-
this.domList[id].remove();
133+
this.domList[id].parentNode.removeChild(this.domList[id]);
134134
this.domList[id] = undefined;
135135
}
136136
this.domList = {};

0 commit comments

Comments
 (0)