Merge pull request #995 from openreplay/dev
fix(ui) - network list ignore the fetch types from api
This commit is contained in:
commit
480637142f
1 changed files with 3 additions and 1 deletions
|
|
@ -397,7 +397,9 @@ export default class MessageManager {
|
|||
break;
|
||||
case MType.ResourceTiming:
|
||||
// TODO: merge `resource` and `fetch` lists into one here instead of UI
|
||||
this.lists.lists.resource.insert(getResourceFromResourceTiming(msg, this.sessionStart))
|
||||
if (msg.initiator !== ResourceType.FETCH) {
|
||||
this.lists.lists.resource.insert(getResourceFromResourceTiming(msg, this.sessionStart))
|
||||
}
|
||||
break;
|
||||
case MType.Fetch:
|
||||
case MType.NetworkRequest:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue