1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-11-10 12:35:46 +03:00

👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2021-06-13 19:42:05 +02:00
parent 233fc72dc2
commit b6d50dfa90

View File

@ -250,7 +250,7 @@ function getPropertyKeyValue(value: any, type: string, timezone: string) {
result = {
type: 'multi_select',
// tslint:disable-next-line: no-any
multi_select: (Array.isArray(multiSelectValue) ? multiSelectValue : multiSelectValue.split(',').map(v => v.trim()))
multi_select: (Array.isArray(multiSelectValue) ? multiSelectValue : multiSelectValue.split(',').map((v: string) => v.trim()))
// tslint:disable-next-line: no-any
.filter((value: any) => value !== null)
.map((option: string) =>