fix return type

This commit is contained in:
Mario 2020-10-16 14:46:34 +02:00
parent 40d4c67be8
commit 1950344862
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ Blockly.defineBlocksWithJsonArray([ // BEGIN JSON EXTRACT
] ]
} }
], ],
"output": "Boolean", "output": Types.BOOLEAN.typeName,
"style": "logic_blocks", "style": "logic_blocks",
"tooltip": "%{BKY_LOGIC_BOOLEAN_TOOLTIP}", "tooltip": "%{BKY_LOGIC_BOOLEAN_TOOLTIP}",
"helpUrl": "%{BKY_LOGIC_BOOLEAN_HELPURL}" "helpUrl": "%{BKY_LOGIC_BOOLEAN_HELPURL}"

View File

@ -18,7 +18,7 @@ export const CHARACTER = {
export const BOOLEAN = { export const BOOLEAN = {
typeId: 'Boolean', typeId: 'Boolean',
typeName: 'Boolean', typeName: 'boolean',
typeMsgName: 'ARD_TYPE_BOOL', typeMsgName: 'ARD_TYPE_BOOL',
} }