Skip to content

Commit 20e5855

Browse files
authored
Remove unique tag counts display. (#5669)
1 parent 9e88320 commit 20e5855

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/sentry/static/sentry/app/views/groupTags.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const GroupTags = React.createClass({
102102
{t('More Details')}
103103
</Link>
104104
</span>
105-
<h5>{tag.name} (<Count value={tag.uniqueValues} />)</h5>
105+
<h5>{tag.name}</h5>
106106
</div>
107107
<div className="box-content with-padding">
108108
<ul className="list-unstyled">

src/sentry/templates/sentry/projects/manage_tags.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ <h2>{% trans "Tags" %}</h2>
2929
<tr data-tagkey="{{ tag.key }}">
3030
<td>
3131
<h5 style="margin-bottom: 10px;">{{ tag.get_label }} <small>({{ tag.key }})</small></h5>
32-
<small>{{ tag.values_seen|small_count }} unique value(s)</small>
3332
</td>
3433
<td>
3534
{% comment %}

0 commit comments

Comments
 (0)