Fix a typo within topic's statistics (#2422)
This commit is contained in:
parent
24243e36ac
commit
5fdcd2124c
1 changed files with 2 additions and 2 deletions
|
@ -24,14 +24,14 @@ const Total: React.FC<TopicAnalysisStats> = ({
|
||||||
</Metrics.Indicator>
|
</Metrics.Indicator>
|
||||||
<Metrics.Indicator label="Null keys">{nullKeys}</Metrics.Indicator>
|
<Metrics.Indicator label="Null keys">{nullKeys}</Metrics.Indicator>
|
||||||
<Metrics.Indicator
|
<Metrics.Indicator
|
||||||
label="Uniq keys"
|
label="Unique keys"
|
||||||
title="Approximate number of unique keys"
|
title="Approximate number of unique keys"
|
||||||
>
|
>
|
||||||
{approxUniqKeys}
|
{approxUniqKeys}
|
||||||
</Metrics.Indicator>
|
</Metrics.Indicator>
|
||||||
<Metrics.Indicator label="Null values">{nullValues}</Metrics.Indicator>
|
<Metrics.Indicator label="Null values">{nullValues}</Metrics.Indicator>
|
||||||
<Metrics.Indicator
|
<Metrics.Indicator
|
||||||
label="Uniq values"
|
label="Unique values"
|
||||||
title="Approximate number of unique values"
|
title="Approximate number of unique values"
|
||||||
>
|
>
|
||||||
{approxUniqValues}
|
{approxUniqValues}
|
||||||
|
|
Loading…
Add table
Reference in a new issue