Fix capitalization typo for className attribute. (#20104)

This commit is contained in:
Justin Kambic 2018-06-21 10:04:38 -04:00 committed by GitHub
parent a87c376826
commit 55a43b2805
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ export function Metric({ className, value, warning }) {
let stylizedValue;
if (warning) {
stylizedValue = (
<EuiBadge color="warning" classname={className}>
<EuiBadge color="warning" className={className}>
{value}
</EuiBadge>
);