[Glitch] Add local only to hashtag timeline

Port front-end changes from 2c7128c7f0 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
This commit is contained in:
Takeshi Umeda
2020-04-19 04:52:39 +09:00
committed by Thibaut Girka
parent 63dc7cfa90
commit 7ceeb97f3d
5 changed files with 27 additions and 15 deletions

View File

@ -38,7 +38,7 @@ export default class TimelineContainer extends React.PureComponent {
let timeline;
if (hashtag) {
timeline = <HashtagTimeline hashtag={hashtag} />;
timeline = <HashtagTimeline hashtag={hashtag} local={local} />;
} else {
timeline = <PublicTimeline local={local} />;
}