Skip to content

Commit e305831

Browse files
fixed #47
1 parent 5b6f83f commit e305831

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Helper/DataAccess.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public static List<MissingComponentData> GetMissingComponentData()
221221
DataTable compData = GetComponentData(datasetId);
222222

223223
//get all years where data rows less then 50, that means not all plots has data
224-
var years = compData.AsEnumerable().GroupBy(x => x.Field<DateTime>("Year")).Where(g => g.Count() < 50).ToList();
224+
var years = compData.AsEnumerable().GroupBy(x => x.Field<DateTime>("Year")).Where(g => g.Count() < 150).ToList();
225225

226226
foreach (var i in years)
227227
{

0 commit comments

Comments
 (0)