Wrap tag values count in div

pull/10616/head
Alex P 2018-06-06 14:43:03 -07:00
parent d8d9b26c9b
commit 602696f0a4
1 changed files with 5 additions and 1 deletions

View File

@ -85,7 +85,11 @@ export default class TagListItem extends PureComponent<Props, State> {
<LoadingSpinner style={this.spinnerStyle} />
)}
</div>
{!!count && `${count} total`}
{!!count && (
<div className="flux-schema--count">{`${count} Tag Value${
count > 1 ? 's' : ''
}`}</div>
)}
</div>
{this.isLoading && <LoaderSkeleton />}
{!this.isLoading && (