mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix(Google Calendar Node): Fix incorrect labels for start and end times when getting all events (#5529)
This commit is contained in:
parent
3af3db160b
commit
f965469e13
|
@ -642,6 +642,20 @@ export const eventFields: INodeProperties[] = [
|
|||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
displayName: 'After',
|
||||
name: 'timeMin',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'At least some part of the event must be after this time',
|
||||
},
|
||||
{
|
||||
displayName: 'Before',
|
||||
name: 'timeMax',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: 'At least some part of the event must be before this time',
|
||||
},
|
||||
{
|
||||
displayName: 'iCalUID',
|
||||
name: 'iCalUID',
|
||||
|
@ -708,20 +722,6 @@ export const eventFields: INodeProperties[] = [
|
|||
description:
|
||||
'Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves',
|
||||
},
|
||||
{
|
||||
displayName: 'Start Time',
|
||||
name: 'timeMax',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: "Upper bound (exclusive) for an event's start time to filter by",
|
||||
},
|
||||
{
|
||||
displayName: 'End Time',
|
||||
name: 'timeMin',
|
||||
type: 'dateTime',
|
||||
default: '',
|
||||
description: "Lower bound (exclusive) for an event's end time to filter by",
|
||||
},
|
||||
{
|
||||
displayName: 'Timezone',
|
||||
name: 'timeZone',
|
||||
|
|
Loading…
Reference in a new issue