Skip to content

Commit b5cdba3

Browse files
committed
fix: Limit to only showing 100 projects.
1 parent d18157c commit b5cdba3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

CFLookup/Pages/ProjectSearch.cshtml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ FROM project_data pd
9797
}
9898

9999
sqlBuilder.Append(" ORDER BY pd.name DESC");
100+
sqlBuilder.Append(" LIMIT 100");
100101

101102
cmd.CommandText = sqlBuilder.ToString();
102103

0 commit comments

Comments
 (0)