]> git.localhorst.tv Git - alttp.git/commitdiff
revert color of language switcher
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 10 Feb 2023 15:51:21 +0000 (16:51 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 10 Feb 2023 15:51:21 +0000 (16:51 +0100)
resources/js/components/common/LanguageSwitcher.js

index c6ae66a0fa2cf3927975f893833520d41aa0cbfb..1b78748ae5e6574b400a32f67259fccfe5951da7 100644 (file)
@@ -17,6 +17,7 @@ const setLanguage = (user, language) => {
 
 const LanguageSwitcher = ({ user }) =>
 <Button
+       className="text-reset"
        href={`?lng=${i18n.language === 'de' ? 'en' : 'de'}`}
        onClick={e => { setLanguage(user, i18n.language === 'de' ? 'en' : 'de'); e.preventDefault(); }}
        title={i18n.language === 'de' ? 'Switch to english' : 'Auf deutsch wechseln'}