01212f5c7964f242897e015217ba2a149f5c23bf
kent
Thu Jan 28 17:54:31 2021 -0800
Reducing facet size to 15
diff --git src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
index 6e24050..0c026a9 100644
--- src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
+++ src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
@@ -1010,31 +1010,31 @@
printf(" The file database is empty.");
else
printf(" Unfortunately there are no %s you are authorized to see.", itemPlural);
return;
}
if (user!=NULL)
accessibleFilesToken = createTokenForUser();
/* Let the sql system handle the rest. Might be one long 'in' clause.... */
struct hash *suggestHash = NULL;
if (!securityColumnsInTable)
suggestHash = accessibleSuggestHash(conn, fields, efList);
webFilteredSqlTable(cart, conn, fields, fromTable, where->string, returnUrl, varPrefix, maxFieldWidth,
- tagOutWrappers, wrapperContext, withFilters, itemPlural, pageSize, suggestHash, visibleFacetList, makeDownloadAllButtonForm);
+ tagOutWrappers, wrapperContext, withFilters, itemPlural, pageSize, 15, suggestHash, visibleFacetList, makeDownloadAllButtonForm);
/* Clean up and go home. */
cdwFileFreeList(&efList);
dyStringFree(&where);
}
char *showSearchControl(char *varName, char *itemPlural)
/* Put up the search control text and stuff. Returns current search string. */
{
/* Get cart variable and clean it up some removing quotes and the like */
char *varVal = unquotedCartString(cart, varName);
printf("Search ",
varName, varName, varVal);
printf(" ");