Support also numbers as values in options and multiOptions

This commit is contained in:
Jan Oberhauser
2019-11-22 00:07:38 +01:00
parent 7233f02350
commit 2d409b6535
2 changed files with 14 additions and 5 deletions

View File

@@ -343,7 +343,7 @@ export interface INodeProperties {
export interface INodePropertyOptions {
name: string;
value: string;
value: string | number;
description?: string;
}