diff --git a/webclient/src/Feed.js b/webclient/src/Feed.js index d418419..6129008 100644 --- a/webclient/src/Feed.js +++ b/webclient/src/Feed.js @@ -101,7 +101,7 @@ function Feed({ updateCache }) { QotNews - {loadingStatus &&

Preloading stories {loadingStatus.current} / {loadingStatus.total}...

} + {error &&
Connection error? Click to expand. @@ -109,6 +109,7 @@ function Feed({ updateCache }) { {stories &&

Loaded feed from cache.

}
} + {stories ?
{stories.map(x => @@ -130,6 +131,8 @@ function Feed({ updateCache }) { :

Loading...

} + + {loadingStatus &&

Preloading stories {loadingStatus.current} / {loadingStatus.total}...

}
); }