We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f74086 commit b8c0985Copy full SHA for b8c0985
devtools/devtools.js
@@ -41,8 +41,9 @@ function getPanelElementState() {
41
debugInfo.appState = panelElem.appState;
42
}
43
44
- if (panelElem.attrs && Object.keys(panelElem.attrs).length) {
45
- debugInfo.attrs = panelElem.attrs;
+ const panelAttrs = panelElem._attrs || panelElem.attrs;
+ if (panelAttrs && Object.keys(panelAttrs).length) {
46
+ debugInfo.attrs = panelAttrs;
47
debugInfo.attrsSchema = panelElem.constructor.attrsSchema;
48
49
devtools/manifest.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "1.8",
+ "version": "1.9",
3
"manifest_version": 2,
4
"name": "Panel Components",
5
"description": "Shows debug info and internal state for Panel components",
0 commit comments