filter out Math.* and System.* in viewer
This commit is contained in:
parent
c7bf40e3e8
commit
3eccd9afd1
|
@ -236,7 +236,7 @@ export const ExpressionViewer: React.FC<Props> = ({
|
|||
<VariableList path={path} heading="Module">
|
||||
{(settings) =>
|
||||
Object.entries(expression.value)
|
||||
.filter(([key, r]) => key !== "Math")
|
||||
.filter(([key, r]) => !key.match(/^(Math|System)\./))
|
||||
.map(([key, r]) => (
|
||||
<ExpressionViewer
|
||||
key={key}
|
||||
|
|
Loading…
Reference in New Issue
Block a user