diff --git a/src/Component/react-inspector/index.tsx b/src/Component/react-inspector/index.tsx index eafde8b..3eecb1b 100644 --- a/src/Component/react-inspector/index.tsx +++ b/src/Component/react-inspector/index.tsx @@ -108,14 +108,31 @@ class CustomInspector extends React.PureComponent { return ( {table ? ( - - - -
+ + + + + + + + + {Object.keys(data).map((key) => { + if (data[key]?.startsWith?.('__console_feed_')) return null + return ( + + + + + ) + })} + +
(index)Value
+ {key} + + {data[key]} +
) : dom ? ( @@ -150,13 +167,7 @@ class CustomInspector extends React.PureComponent { } if (constructor === 'Promise') - return ( - - Promise {`{`} - {``} - {`}`} - - ) + return Promise {`{}`} if (data instanceof HTMLElement) return (