Skip to content

Commit

Permalink
#360: updates to string describe labels
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Dec 23, 2020
1 parent f6c4156 commit 7cde249
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/popups/describe/DetailsBoxplot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ class DetailsBoxplot extends React.Component {
<li>{buildStat("Rows w/ Spaces", details.string_metrics.with_space)}</li>
<li>{buildStat("Rows w/ Accent Chars", details.string_metrics.with_accent)}</li>
<li>{buildStat("Rows w/ Numeric Chars", details.string_metrics.with_accent)}</li>
<li>{buildStat("Rows w/ All Uppercase Chars", details.string_metrics.with_upper)}</li>
<li>{buildStat("Rows w/ All Lowercase Chars", details.string_metrics.with_lower)}</li>
<li>{buildStat("Rows w/ Uppercase Chars", details.string_metrics.with_upper)}</li>
<li>{buildStat("Rows w/ Lowercase Chars", details.string_metrics.with_lower)}</li>
<li>{buildStat("Rows w/ Punctuation", details.string_metrics.with_punc)}</li>
<li>{buildStat("Rows Starting w/ Space", details.string_metrics.space_at_the_first)}</li>
<li>{buildStat("Rows Ending w/ Space", details.string_metrics.space_at_the_end)}</li>
Expand Down

0 comments on commit 7cde249

Please sign in to comment.