mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
Add links to 3rd party apps in more features. Fixes #70
This commit is contained in:
parent
c5baa7f0bc
commit
fc7ba62915
3 changed files with 11 additions and 1 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit ef6a2d42a0c03e6e66f1670d828b738a72cb3880
|
Subproject commit ebe80fa15d9f7d17979c317291834ab4021cb8eb
|
|
@ -9,6 +9,11 @@ export class Apps extends Component<any, any> {
|
||||||
constructor(props: any, context: any) {
|
constructor(props: any, context: any) {
|
||||||
super(props, context);
|
super(props, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
window.scrollTo(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -212,6 +212,11 @@ export class Main extends Component<any, any> {
|
||||||
</T>
|
</T>
|
||||||
</li>
|
</li>
|
||||||
<li>{i18n.t("clean_interface")}</li>
|
<li>{i18n.t("clean_interface")}</li>
|
||||||
|
<li>
|
||||||
|
<Link to="/apps">
|
||||||
|
{i18n.t("mobile_apps_for_ios_and_android")}
|
||||||
|
</Link>
|
||||||
|
</li>
|
||||||
<li>{i18n.t("avatar_support")}</li>
|
<li>{i18n.t("avatar_support")}</li>
|
||||||
<li>
|
<li>
|
||||||
<T i18nKey="full_vote_scores">
|
<T i18nKey="full_vote_scores">
|
||||||
|
|
Loading…
Reference in a new issue