Fix: Device Model Cast Error

This commit is contained in:
Gary Sharp
2013-05-06 14:44:56 +10:00
parent 8533ec2fe0
commit ab0c7992f8
@@ -22,7 +22,7 @@ namespace Disco.Web.Areas.Config.Models.DeviceModel
Model = dm.Model,
ModelType = dm.ModelType,
DeviceCount = dm.Devices.Count
}).Cast<ConfigDeviceModelIndexModelItem>().ToList();
}).ToArray().Cast<ConfigDeviceModelIndexModelItem>().ToList();
return m;
}