mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-10 02:15:11 +00:00
go back if last history action was push, fix bug preventing navigation to / working from login
This commit is contained in:
parent
de4b1a0518
commit
4da9bcd793
|
@ -244,9 +244,10 @@ export class Home extends Component<any, HomeState> {
|
|||
}
|
||||
|
||||
async componentDidMount() {
|
||||
if (!this.state.isIsomorphic) {
|
||||
if (!this.state.isIsomorphic || !this.isoData.routeData.length) {
|
||||
await Promise.all([this.fetchTrendingCommunities(), this.fetchData()]);
|
||||
}
|
||||
|
||||
setupTippy();
|
||||
}
|
||||
|
||||
|
@ -456,7 +457,7 @@ export class Home extends Component<any, HomeState> {
|
|||
}
|
||||
|
||||
trendingCommunities(isMobile = false) {
|
||||
switch (this.state.trendingCommunitiesRes.state) {
|
||||
switch (this.state.trendingCommunitiesRes?.state) {
|
||||
case "loading":
|
||||
return (
|
||||
<h5>
|
||||
|
@ -573,7 +574,7 @@ export class Home extends Component<any, HomeState> {
|
|||
const siteRes = this.state.siteRes;
|
||||
|
||||
if (dataType === DataType.Post) {
|
||||
switch (this.state.postsRes.state) {
|
||||
switch (this.state.postsRes?.state) {
|
||||
case "loading":
|
||||
return (
|
||||
<h5>
|
||||
|
|
|
@ -186,7 +186,9 @@ export class Login extends Component<any, State> {
|
|||
UserService.Instance.myUserInfo = site.data.my_user;
|
||||
}
|
||||
|
||||
i.props.history.replace("/");
|
||||
i.props.history.action === "PUSH"
|
||||
? i.props.history.back()
|
||||
: i.props.history.push("/");
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue