Add space before count parenthesis in table title
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
@@ -205,7 +205,7 @@ export const CatalogTable = (props: CatalogTableProps) => {
|
||||
const currentType = filters.type?.value || '';
|
||||
const countIsCorrect =
|
||||
typeof totalItems === 'number' && !totalItemsLoading && !loading;
|
||||
const currentCount = countIsCorrect ? `(${totalItems})` : '';
|
||||
const currentCount = countIsCorrect ? ` (${totalItems})` : '';
|
||||
const somethingIsLoading = loading || totalItemsLoading;
|
||||
// TODO(timbonicus): remove the title from the CatalogTable once using EntitySearchBar
|
||||
const titlePreamble = capitalize(
|
||||
|
||||
Reference in New Issue
Block a user