From: Chris Duncan Date: Sat, 20 Jul 2024 20:07:35 +0000 (-0700) Subject: Fix Apex action labels. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=989d08c187d65ae2a0910e1eb0506e45abbb280c;p=flowpex.git Fix Apex action labels. --- 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();