Skip to content

Commit

Permalink
Fix UI issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Jun 30, 2024
1 parent 750dbbe commit 19e71c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 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.4</Version>
<Version>1.0.0-preview.5</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 @@ -13,8 +13,5 @@
<ProjectReference Include="..\EasyAbp.ProcessManagement.Domain\EasyAbp.ProcessManagement.Domain.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="EasyAbp\ProcessManagement" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $(function () {
document.location = abp.appPath + 'ProcessManagement/Processes/Process';
});

var l = abp.localization.getResource('ProcessManagement');
var l = abp.localization.getResource('EasyAbpProcessManagement');

var notificationService = easyAbp.processManagement.notifications.notification;
var processService = easyAbp.processManagement.processes.process;
Expand All @@ -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() - notificationLifetime)),
fromCreationTime: new Date(abp.clock.now() - notificationLifetime),
userId: abp.currentUser.id,
dismissed: false
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $(function () {
return input;
};

var l = abp.localization.getResource('ProcessManagement');
var l = abp.localization.getResource('EasyAbpProcessManagement');

var service = easyAbp.processManagement.processes.process;
var detailsModal = new abp.ModalManager(abp.appPath + 'ProcessManagement/Processes/Process/DetailsModal');
Expand Down

0 comments on commit 19e71c5

Please sign in to comment.