File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <Version >1.4.1 </Version >
4
+ <Version >1.4.2 </Version >
5
5
<TargetFramework >net8.0</TargetFramework >
6
6
<DocumentationFile >bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile >
7
7
<NoWarn >CS1591</NoWarn >
Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ private async Task<List<string>> GetMselIdList(string userId)
124
124
. ToListAsync ( ) ;
125
125
// get my unit's msels
126
126
var unitMselIds = _context . MselUnits
127
- . Where ( t => unitIdList . Contains ( t . Id ) && t . Msel . Status != Data . Enumerations . MselItemStatus . Archived )
128
- . Select ( t => t . Msel . Id . ToString ( ) ) ;
127
+ . Where ( mu => unitIdList . Contains ( mu . UnitId ) && mu . Msel . Status != Data . Enumerations . MselItemStatus . Archived )
128
+ . Select ( mu => mu . MselId . ToString ( ) ) ;
129
129
var unitMselIdList = await unitMselIds
130
130
. Where ( id => id != null )
131
131
. ToListAsync ( ) ;
You can’t perform that action at this time.
0 commit comments