Skip to content

Commit

Permalink
Fix the alert ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
gdlcf88 committed Jul 15, 2024
1 parent 066d6a4 commit ddc8fdb
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.13</Version>
<Version>1.0.0-preview.14</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 @@ -26,7 +26,7 @@
}
});

res.items.forEach(function (item) {
res.items.reverse().forEach(function (item) {
if (!existingAlertIds.has(item.id)) {
var newAlert = createAlert(item);
alertPlaceholder.prepend(newAlert)
Expand Down

0 comments on commit ddc8fdb

Please sign in to comment.