summaryrefslogtreecommitdiffstats
path: root/ui/src/components/main.tsx
diff options
context:
space:
mode:
authorderek <wwsage@gmail.com>2020-07-13 20:09:39 -0400
committerderek <wwsage@gmail.com>2020-07-13 20:09:39 -0400
commitd71897620ceea58b2d314242ea2f646a466d338e (patch)
tree8b32a1e5f3e06e7c2a6be03827730bb8fdb0679e /ui/src/components/main.tsx
parente7b9ab1b3a4926d5d32ed9e87792cc9d39d4ede5 (diff)
parent52983907c4d1b7fda1182316cb631f9b5e913f5b (diff)
Merge remote-tracking branch 'LemmyNet/master'
Diffstat (limited to 'ui/src/components/main.tsx')
-rw-r--r--ui/src/components/main.tsx12
1 files changed, 8 insertions, 4 deletions
diff --git a/ui/src/components/main.tsx b/ui/src/components/main.tsx
index 20735049..9063a039 100644
--- a/ui/src/components/main.tsx
+++ b/ui/src/components/main.tsx
@@ -373,17 +373,21 @@ export class Main extends Component<any, MainState> {
#
</a>
<a href="https://en.wikipedia.org/wiki/Fediverse">#</a>
- <br></br>
+ <br class="big"></br>
<code>#</code>
<br></br>
<b>#</b>
- <br></br>
+ <br class="big"></br>
<a href={repoUrl}>#</a>
- <br></br>
+ <br class="big"></br>
<a href="https://www.rust-lang.org">#</a>
<a href="https://actix.rs/">#</a>
<a href="https://infernojs.org">#</a>
<a href="https://www.typescriptlang.org/">#</a>
+ <br class="big"></br>
+ <a href="https://github.com/LemmyNet/lemmy/graphs/contributors?type=a">
+ #
+ </a>
</T>
</p>
</div>
@@ -493,7 +497,7 @@ export class Main extends Component<any, MainState> {
{i18n.t('prev')}
</button>
)}
- {this.state.posts.length == fetchLimit && (
+ {this.state.posts.length > 0 && (
<button
class="btn btn-sm btn-secondary"
onClick={linkEvent(this, this.nextPage)}