mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
fix(Google Calendar Node): Fix incorrect labels for start and end times when getting all events (#5529)
This commit is contained in:
committed by
GitHub
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',
|
||||
|
||||
Reference in New Issue
Block a user