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:
parent
233fc72dc2
commit
b6d50dfa90
@ -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) =>
|
||||
|
Loading…
Reference in New Issue
Block a user