From 989d08c187d65ae2a0910e1eb0506e45abbb280c Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 20 Jul 2024 13:07:35 -0700 Subject: [PATCH] Fix Apex action labels. --- src/System/Datetime/day/System_Datetime_day.cls | 2 +- src/System/Datetime/dayGmt/System_Datetime_dayGmt.cls | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/System/Datetime/day/System_Datetime_day.cls b/src/System/Datetime/day/System_Datetime_day.cls index b622cd4..b301a77 100644 --- a/src/System/Datetime/day/System_Datetime_day.cls +++ b/src/System/Datetime/day/System_Datetime_day.cls @@ -5,7 +5,7 @@ global class System_Datetime_day { - @InvocableMethod(label='System.Date.day()' category='Flowpex' iconName='slds:standard:topic2' description='Returns the day-of-month component of a Datetime in the local time zone of the context user.') + @InvocableMethod(label='System.Datetime.day()' category='Flowpex' iconName='slds:standard:topic2' description='Returns the day-of-month component of a Datetime in the local time zone of the context user.') global static List System_Datetime_day (List requests) { List responses = new List(); diff --git a/src/System/Datetime/dayGmt/System_Datetime_dayGmt.cls b/src/System/Datetime/dayGmt/System_Datetime_dayGmt.cls index 215e65c..8ae403a 100644 --- a/src/System/Datetime/dayGmt/System_Datetime_dayGmt.cls +++ b/src/System/Datetime/dayGmt/System_Datetime_dayGmt.cls @@ -5,7 +5,7 @@ global class System_Datetime_dayGmt { - @InvocableMethod(label='System.Date.dayGmt()' category='Flowpex' iconName='slds:standard:topic2' description='Returns the day-of-month component of a Datetime in the GMT time zone.') + @InvocableMethod(label='System.Datetime.dayGmt()' category='Flowpex' iconName='slds:standard:topic2' description='Returns the day-of-month component of a Datetime in the GMT time zone.') global static List System_Datetime_dayGmt (List requests) { List responses = new List(); -- 2.52.0