Wrap tag values count in div

pull/3589/head
Alex P 2018-06-06 14:43:03 -07:00
parent a50e9e9b3e
commit ce7f9c52ad
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 && (