From 2efa576340d82576b7a5b99619beef7b15792c03 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Fri, 12 Jul 2024 13:19:37 -0700 Subject: [PATCH] Fix Apex action labels. --- src/System/Date/dayOfYear/System_Date_dayOfYear.cls | 2 +- src/System/Date/daysBetween/System_Date_daysBetween.cls | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.52.0