Fix tippy on component mount. Fixes #509 (#511)

This commit is contained in:
Dessalines 2021-11-25 12:40:48 -05:00 committed by GitHub
parent ece262993a
commit 324682b154
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 5 deletions

View file

@ -133,7 +133,6 @@ export class Community extends Component<any, State> {
this.fetchCommunity();
this.fetchData();
}
setupTippy();
}
fetchCommunity() {
@ -144,6 +143,10 @@ export class Community extends Component<any, State> {
WebSocketService.Instance.send(wsClient.getCommunity(form));
}
componentDidMount() {
setupTippy();
}
componentWillUnmount() {
saveScrollPosition(this.context);
this.subscription.unsubscribe();