From 4ade937a1adb7d50a56050036f550d189ee82ff0 Mon Sep 17 00:00:00 2001 From: Jeffrey Warren Date: Mon, 23 Aug 2021 13:23:34 -0400 Subject: [PATCH] Fix dashboard page title (#10081) small fix! --- app/controllers/home_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 20447e49db..1055976fb0 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -48,6 +48,7 @@ def dashboard end def dashboard_v2 + @title = I18n.t('dashboard._header.dashboard') # The new dashboard displays the blog and topics list if current_user @blog = Tag.find_nodes_by_type('blog', 'note', 1).limit(1).first