Skip to content

Commit

Permalink
Version 1.43 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
NomisNostab authored Jun 13, 2023
2 parents a326f97 + 1cdc182 commit d2e09e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Topo/Services/ApprovalsService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public async Task<List<ApprovalsListModel>> GetApprovalListItems(string unitId)
}
}
// Get items in allTerrainApprovals that are not in savedApprovalItems, these are new since last time
var newSubmissions = allTerrainApprovals.Where(all => savedApprovalItems.Count(x => x.achievement_id == all.achievement_id) == 0).ToList();
var newSubmissions = allTerrainApprovals.Where(all => savedApprovalItems.Count(x => x.achievement_id == all.achievement_id && x.submission_type == all.submission_type) == 0).ToList();

foreach (var newApproval in newSubmissions)
{
Expand Down
2 changes: 1 addition & 1 deletion Topo/Shared/NavMenu.razor
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
}
<div class="nav-item px-3">
<NavLink class="nav-link disabled" href="" >
<span class="" aria-hidden="true"></span> Version 1.42
<span class="" aria-hidden="true"></span> Version 1.43
</NavLink>
</div>

Expand Down
2 changes: 1 addition & 1 deletion TopoReportFunction/aws-lambda-tools-defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dotnet lambda help",
"All the command line options for the Lambda command can be specified in this file."
],
"profile" : "default",
"profile" : "VSUser",
"region" : "ap-southeast-2",
"configuration" : "Release",
"function-runtime" : "dotnet6",
Expand Down

0 comments on commit d2e09e5

Please sign in to comment.