Bug 1669353 - [devtools] Remove unused processId attribute from about:debugging on process targets. r=jdescottes

Differential Revision: https://phabricator.services.mozilla.com/D92498
This commit is contained in:
Alexandre Poirot 2020-10-07 21:22:24 +00:00
Родитель 429b38902b
Коммит 68f928fc97
2 изменённых файлов: 0 добавлений и 3 удалений

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

@ -56,7 +56,6 @@ function toMainProcessComponentData(process) {
type,
details: {
description,
processId: process.id,
},
};
}

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

@ -27,8 +27,6 @@ const extensionTargetDetails = {
const processTargetDetails = {
// Description for the process.
description: PropTypes.string.isRequired,
// The id for the process. #0 is the main/parent process, #1++ are parent processes
processId: PropTypes.number.isRequired,
};
const tabTargetDetails = {