IRC_NewDev
parent
457544adc3
commit
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