summaryrefslogtreecommitdiffstats
path: root/ui/src/components/user.tsx
diff options
context:
space:
mode:
authorDessalines <happydooby@gmail.com>2019-06-02 19:46:35 -0700
committerDessalines <happydooby@gmail.com>2019-06-02 19:46:35 -0700
commit0a0c80fbbeac2342bacf68e0cd6c047a369ed742 (patch)
tree2c52cc84554c9d9953085235658f990424627428 /ui/src/components/user.tsx
parentc337f54a49fcb9dcf96e90f81783ba9817cc01a1 (diff)
parent73e8b3fcd8439d95bb671d67f8f862b4cb82cc74 (diff)
Merge branch 'dev'
Diffstat (limited to 'ui/src/components/user.tsx')
-rw-r--r--ui/src/components/user.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx
index 4cd88abc..d7c2bf66 100644
--- a/ui/src/components/user.tsx
+++ b/ui/src/components/user.tsx
@@ -341,7 +341,7 @@ export class User extends Component<any, UserState> {
this.state.moderates = res.moderates;
this.state.posts = res.posts;
this.state.loading = false;
- document.title = `/u/${this.state.user.name} - Lemmy`;
+ document.title = `/u/${this.state.user.name} - ${WebSocketService.Instance.site.name}`;
window.scrollTo(0,0);
this.setState(this.state);
} else if (op == UserOperation.EditComment) {