From 3cac46f101d96edf14ba3ef8d9b2e7c732ef2883 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Fri, 20 Jul 2018 11:04:02 +0200 Subject: [PATCH] fixed wrong subtitle --- scm-ui/src/components/Page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/components/Page.js b/scm-ui/src/components/Page.js index 67de0f59f2..b9ee7b0e35 100644 --- a/scm-ui/src/components/Page.js +++ b/scm-ui/src/components/Page.js @@ -29,7 +29,7 @@ class Page extends React.Component { renderSubtitle() { const { subtitle } = this.props; if (subtitle) { - return

Users

; + return

{subtitle}

; } return null; }