From d4eadc21dfb07eb1abb7d9e50b7ef11486d89f1b Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Tue, 24 Jul 2018 15:43:39 +0200 Subject: [PATCH] fixed wrong selector of displayName --- scm-ui/src/containers/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/containers/App.js b/scm-ui/src/containers/App.js index 47b8b27fb3..95a4970def 100644 --- a/scm-ui/src/containers/App.js +++ b/scm-ui/src/containers/App.js @@ -70,7 +70,7 @@ const mapStateToProps = state => { mapped.authenticated = state.auth.login.authenticated; } if (state.auth.me && state.auth.me.entry) { - displayName = state.auth.me.entry.entity.displayName; + displayName = state.auth.me.entry.displayName; } return { ...mapped,