Skip to content

Commit

Permalink
Fix notificationsModal.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Jun 30, 2024
1 parent 0b53378 commit 750dbbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.0.0-preview.3</Version>
<Version>1.0.0-preview.4</Version>
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<AbpProjectType>module</AbpProjectType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ $(function () {
scrollCollapse: true,
ordering: false,
ajax: abp.libs.datatables.createAjax(notificationService.getList, {
fromCreationTime: abp.clock.normalize(new Date(abp.clock.now().getTime() - notificationLifetime)),
fromCreationTime: abp.clock.normalize(new Date(abp.clock.now() - notificationLifetime)),
userId: abp.currentUser.id,
dismissed: false
}),
Expand Down

0 comments on commit 750dbbe

Please sign in to comment.