coer-elements 0.0.72 → 0.0.74

Sign up to get free protection for your applications and to get access to all the features.
@@ -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) {