From: Chris Duncan Date: Fri, 12 Jul 2024 20:19:37 +0000 (-0700) Subject: Fix Apex action labels. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=2efa576340d82576b7a5b99619beef7b15792c03;p=flowpex.git Fix Apex action labels. --- diff --git a/src/System/Date/dayOfYear/System_Date_dayOfYear.cls b/src/System/Date/dayOfYear/System_Date_dayOfYear.cls index b53f248..c0559be 100644 --- a/src/System/Date/dayOfYear/System_Date_dayOfYear.cls +++ b/src/System/Date/dayOfYear/System_Date_dayOfYear.cls @@ -5,7 +5,7 @@ global class System_Date_dayOfYear { - @InvocableMethod(label='System.Date.day()' category='Flowpex' iconName='slds:standard:date_input' description='Returns the day-of-year component of a Date.') + @InvocableMethod(label='System.Date.dayOfYear()' category='Flowpex' iconName='slds:standard:date_input' description='Returns the day-of-year component of a Date.') global static List System_Date_dayOfYear (List requests) { List responses = new List(); diff --git a/src/System/Date/daysBetween/System_Date_daysBetween.cls b/src/System/Date/daysBetween/System_Date_daysBetween.cls index af9a139..0fae011 100644 --- a/src/System/Date/daysBetween/System_Date_daysBetween.cls +++ b/src/System/Date/daysBetween/System_Date_daysBetween.cls @@ -5,7 +5,7 @@ global class System_Date_daysBetween { - @InvocableMethod(label='System.Date.day()' category='Flowpex' iconName='slds:standard:number_input' description='Returns the number of days between two dates. If the first date occurs after the second date, the return value is negative.') + @InvocableMethod(label='System.Date.daysBetween()' category='Flowpex' iconName='slds:standard:number_input' description='Returns the number of days between two dates. If the first date occurs after the second date, the return value is negative.') global static List System_Date_daysBetween (List requests) { List responses = new List();