Wrap tag values count in div
parent
a50e9e9b3e
commit
ce7f9c52ad
|
@ -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 && (
|
||||
|
|
Loading…
Reference in New Issue