Bug 1670627 - [devtools] Pass the updateType to the data provider on the resource update event r=Honza

Differential Revision: https://phabricator.services.mozilla.com/D93700
This commit is contained in:
Hubert Boma Manilla 2020-10-16 09:42:48 +00:00
Родитель ddaca31b0c
Коммит 30aacc98e1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -77,7 +77,6 @@ class NetworkEventWatcher {
}
const resourceUpdates = {
updates: [...currentResource.updates, updateResource.updateType],
updateType: updateResource.updateType,
};
switch (updateResource.updateType) {
@ -137,6 +136,7 @@ class NetworkEventWatcher {
resourceType: currentResource.resourceType,
resourceId: updateResource.resourceId,
resourceUpdates,
updateType: updateResource.updateType,
},
]);
}