Merge pull request #51728 from psykzz/orbit-totals

Add totals to orbit UI sections
This commit is contained in:
Jordan Brown
2020-06-19 11:50:09 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ const BasicSection = (props, context) => {
const things = source.filter(searchFor(searchText));
things.sort(compareNumberedText);
return source.length > 0 && (
<Section title={title}>
<Section title={`${title} - (${source.length})`}>
{things.map(thing => (
<Button
key={thing.name}
File diff suppressed because one or more lines are too long