Skip to content

Commit

Permalink
psp-3042 correct issue with lease max page size. (#1111)
Browse files Browse the repository at this point in the history
Co-authored-by: Smith <[email protected]>
  • Loading branch information
devinleighsmith and Smith authored Mar 17, 2022
1 parent 4dea2bc commit 70452d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backend/api/Pims.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>0ef6255f-9ea0-49ec-8c65-c172304b4926</UserSecretsId>
<Version>1.1.4-21.45</Version>
<AssemblyVersion>1.1.4.21</AssemblyVersion>
<Version>1.1.5-21.45</Version>
<AssemblyVersion>1.1.5.21</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProjectGuid>16BC0468-78F6-4C91-87DA-7403C919E646</ProjectGuid>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion backend/dal/Repositories/LeaseRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public PimsLease Get(long id)
{
this.User.ThrowIfNotAuthorized(Permissions.LeaseView);

PimsLease lease = this.Context.PimsLeases
PimsLease lease = this.Context.PimsLeases.AsSplitQuery()
.Include(l => l.PimsPropertyLeases)
.ThenInclude(p => p.Property)
.ThenInclude(p => p.Address)
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "1.1.4-21.45",
"version": "1.1.5-21.45",
"private": true,
"dependencies": {
"@bcgov/bc-sans": "1.0.1",
Expand Down

0 comments on commit 70452d9

Please sign in to comment.