Limit number of options to 100

This commit is contained in:
Jeremy Stretch 2024-02-06 09:47:11 -05:00
parent edc9aaf53d
commit ebd4a316c0
3 changed files with 3 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -87,8 +87,9 @@ export class DynamicTomSelect extends TomSelect {
query['q'] = [search];
}
// Enable "brief" mode
query['brief'] = ['True'];
// Add standard parameters
query['brief'] = [true];
query['limit'] = [100];
return queryString.stringifyUrl({ url, query });
}