Skip to content

Commit

Permalink
fix: added russian into long locales (anuraghazra#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerty541 authored Jan 10, 2021
1 parent de8df72 commit 2817bb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cards/stats-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const renderStatsCard = (stats = {}, options = { hide: [] }) => {
},
};

const isLongLocale = ["fr", "pt-br", "es"].includes(locale) === true;
const isLongLocale = ["fr", "pt-br", "es", "ru"].includes(locale) === true;

// filter out hidden stats defined by user & create the text nodes
const statItems = Object.keys(STATS)
Expand Down

0 comments on commit 2817bb9

Please sign in to comment.