l-min-components 1.7.1526 → 1.7.1528
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -382,7 +382,7 @@ const HeaderComponent = (props) => {
|
|
|
382
382
|
const value = localStorage.getItem("defaultLang");
|
|
383
383
|
return (
|
|
384
384
|
<Navbar>
|
|
385
|
-
<img src={logo} alt={findText("Learngual logo")}
|
|
385
|
+
<a href={window.location.origin}><img src={logo} alt={findText("Learngual logo")} style={{width: 80}}/></a>
|
|
386
386
|
<Nav
|
|
387
387
|
onClick={() => {
|
|
388
388
|
setLanguageDropdown();
|
|
@@ -7,11 +7,11 @@ export const languagesData = [
|
|
|
7
7
|
flag: usFlag,
|
|
8
8
|
slug: "en",
|
|
9
9
|
},
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
{
|
|
11
|
+
name: "Korean",
|
|
12
|
+
flag: koreanFlag,
|
|
13
|
+
slug: "ko",
|
|
14
|
+
},
|
|
15
15
|
];
|
|
16
16
|
|
|
17
17
|
export const selectedLanguageData = {
|