Custom Objects: isEmpty() and Date Fields?
Apologies if I am missing something glaringly obvious, but is there any sort of issue with date fields and the isEmpty() conditional? Running into an issue where a visually empty field on my end is returning a value as if there was data in the field? It's a Date field type and there's only one record - but for the below loop it's returing the #else value even though the field in the UI is blank.
#foreach ( $item in $digitalBankingProfileList )
#if ( $item.luminDigitalBankingLastLoginDate.isEmpty() )
This works correctly
#else
Script is broken
#end
#endIs it actually a NULL value that's making it see it as not actually empty?