Bug 1568060 - Replace PropTypes.boolean with PropTypes.bool for geometryEditorEnabled. r=mtigley

Differential Revision: https://phabricator.services.mozilla.com/D38935
This commit is contained in:
Gabriel Luong 2019-07-22 18:42:17 -04:00
Родитель 3ebbb1de66
Коммит a530f658c5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -11,7 +11,7 @@ const PropTypes = require("devtools/client/shared/vendor/react-prop-types");
*/ */
exports.boxModel = { exports.boxModel = {
// Whether or not the geometry editor is enabled // Whether or not the geometry editor is enabled
geometryEditorEnabled: PropTypes.boolean, geometryEditorEnabled: PropTypes.bool,
// The layout information of the current selected node // The layout information of the current selected node
layout: PropTypes.object, layout: PropTypes.object,