UI work to improve look and feel of Viewers

This commit is contained in:
Stefan Zermatten
2021-10-17 23:28:39 +02:00
parent 247353f0ed
commit bc6c857b6b
13 changed files with 420 additions and 196 deletions

View File

@@ -11,7 +11,7 @@ const unaryOperator = {
},
resolve(fn, node, scope, context){
const {result: rightNode} = resolve(fn, node.right, scope, context);
if (rightNode.parseType !== 'number'){
if (rightNode.valueType !== 'number'){
return {
result: unaryOperator.create({
operator: node.operator,