mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Display also properties with value "null" in variable selector
This commit is contained in:
@@ -168,6 +168,13 @@ export default mixins(
|
||||
|
||||
const returnData: IVariableSelectorOption[] = [];
|
||||
if (inputData === null) {
|
||||
returnData.push(
|
||||
{
|
||||
name: propertyName,
|
||||
key: fullpath,
|
||||
value: '[null]',
|
||||
} as IVariableSelectorOption,
|
||||
);
|
||||
return returnData;
|
||||
} else if (Array.isArray(inputData)) {
|
||||
let newPropertyName = propertyName;
|
||||
|
||||
Reference in New Issue
Block a user