Merge pull request #16036 from steven-sheehy/log-stats-overflow

Explore: Fix log stats with long labels
This commit is contained in:
Torkel Ödegaard 2019-03-17 13:16:43 +01:00 committed by GitHub
commit 34b6405fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,9 @@ function LogLabelStatsRow(logLabelStatsModel: LogLabelStatsModel) {
return (
<div className={className}>
<div className="logs-stats-row__label">
<div className="logs-stats-row__value">{value}</div>
<div className="logs-stats-row__value" title={value}>
{value}
</div>
<div className="logs-stats-row__count">{count}</div>
<div className="logs-stats-row__percent">{percent}</div>
</div>

View File

@ -299,6 +299,8 @@ $column-horizontal-spacing: 10px;
&__value {
flex: 1;
text-overflow: ellipsis;
overflow: hidden;
}
&__count,