From b2ae3a1ded796de787b8b6aa6662b7c3ef9a61ac Mon Sep 17 00:00:00 2001 From: AdrienLSH Date: Thu, 18 Jan 2024 13:41:02 +0100 Subject: [PATCH] front: profile page title set to username --- frontend/static/js/views/ProfilePageView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/static/js/views/ProfilePageView.js b/frontend/static/js/views/ProfilePageView.js index 8d8f930..58aa891 100644 --- a/frontend/static/js/views/ProfilePageView.js +++ b/frontend/static/js/views/ProfilePageView.js @@ -3,7 +3,7 @@ import { client } from "../index.js" export default class extends AbstractView { constructor(params) { - super(params, "Profile "); + super(params, params.username); this.username = params.username; }