Browse Source

Merge pull request #18103 from abpframework/auto-merge/rel-7-4/2266

Merge branch dev with rel-7.4
pull/18107/head
liangshiwei 3 years ago
committed by GitHub
parent
commit
2d376772a8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js

@ -417,7 +417,7 @@
var isUtc = options.isUtc;
dateFormat = dateFormat || options.dateFormat;
if (!date) {
return isUtc ? moment.utc() : moment();
return isUtc ? moment.utc().startOf('day') : moment().startOf('day');
}
if (isUtc) {

Loading…
Cancel
Save