Compare commits
2 Commits
6cc4c32625
...
51f02e79c1
Author | SHA1 | Date |
---|---|---|
|
51f02e79c1 | |
|
0202a61b07 |
|
@ -601,7 +601,13 @@ namespace IRaCIS.Core.Application.Services
|
||||||
item.InstanceInfoList.ForEach(x =>
|
item.InstanceInfoList.ForEach(x =>
|
||||||
{
|
{
|
||||||
|
|
||||||
x.KeyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id).Select(y => y.NumberOfFrames).Distinct().ToList();
|
var keyFramesList = rowInfoList.Where(y => y.InstanceId == x.Id).Select(y => y.NumberOfFrames).Distinct().ToList();
|
||||||
|
|
||||||
|
if (keyFramesList.Count() > 1)
|
||||||
|
{
|
||||||
|
x.KeyFramesList = keyFramesList;
|
||||||
|
}
|
||||||
|
|
||||||
var item = rowInfoList.FirstOrDefault(y => y.InstanceId == x.Id);
|
var item = rowInfoList.FirstOrDefault(y => y.InstanceId == x.Id);
|
||||||
if (item != null)
|
if (item != null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue