Commit 7dee62a2 authored by Mark Harding's avatar Mark Harding

(chore): include full name in frontend title not just username

parent e59acb32
No related merge requests found
Pipeline #64244536 passed with stages
in 27 minutes and 22 seconds
......@@ -116,7 +116,7 @@ export class ChannelComponent {
if (!(this.session.getLoggedInUser() && this.session.getLoggedInUser().guid === this.user.guid)) {
this.editing = false;
}
this.title.setTitle(this.user.username);
this.title.setTitle(`${this.user.name} (@${this.user.username})`);
this.context.set('activity', { label: `@${this.user.username} posts`, nameLabel: `@${this.user.username}`, id: this.user.guid });
if (this.session.getLoggedInUser()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment