coer-elements 0.0.72 → 0.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -696,10 +696,10 @@ class DateTime {
696
696
  date = DateTime.GetFormatDB(date);
697
697
  return moment(date).parseZone().local(true).format('MMM, DD YYYY');
698
698
  }
699
- /** MMM, DD YYYY */
699
+ /** MMM, DD YYYY at hh:mm a */
700
700
  static GetDateTimeFormat(date) {
701
701
  date = DateTime.GetFormatDB(date);
702
- return moment(date).parseZone().local(true).format('MMM, DD YYYY hh:mm a');
702
+ return moment(date).parseZone().local(true).format('MMM, DD YYYY - hh:mm a').replace('-', 'at');
703
703
  }
704
704
  /** */
705
705
  static IsValidDate(date) {