this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Forgot to set lang attr on html

+2
+2
src/utils/lang.js
··· 17 17 i18n.on('change', () => { 18 18 const lang = i18n.locale; 19 19 if (lang) { 20 + // lang 21 + document.documentElement.lang = lang; 20 22 // LTR or RTL 21 23 const { direction } = new Locale(lang).textInfo; 22 24 document.documentElement.dir = direction;