From 84a4e519df9a6d136a746c5dd4718fe2dd04b721 Mon Sep 17 00:00:00 2001 From: Christoph Wolfes Date: Wed, 25 Jul 2018 15:37:00 +0200 Subject: [PATCH 1/2] fixes merge conflict with commit 9a44d02 (do not allow change username field on edit) --- scm-ui/src/users/components/UserForm.js | 83 ++++++++++++------------- 1 file changed, 41 insertions(+), 42 deletions(-) diff --git a/scm-ui/src/users/components/UserForm.js b/scm-ui/src/users/components/UserForm.js index b93877e0e3..40ecf4504a 100644 --- a/scm-ui/src/users/components/UserForm.js +++ b/scm-ui/src/users/components/UserForm.js @@ -9,7 +9,6 @@ import Loading from "../../components/Loading"; type Props = { submitForm: User => void, user?: User, - loading?: boolean, t: string => string }; @@ -39,49 +38,49 @@ class UserForm extends React.Component { render() { const { t } = this.props; const user = this.state; - if (user) { - return ( -
- - - - - - - - + + let nameField = null; + if (!this.props.user) { + nameField = ( + ); - } else { - return ; } + return ( +
+ {nameField} + + + + + + + + ); } handleUsernameChange = (name: string) => { From ea0aeb9706eeb28cedfcc49f87313dcd4f941a58 Mon Sep 17 00:00:00 2001 From: Johannes Schnatterer Date: Wed, 25 Jul 2018 16:27:36 +0200 Subject: [PATCH 2/2] Jenkins: Also send "still unstable" emails --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21e03f6d0a..aa6cd6b33b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,7 @@ #!groovy // Keep the version in sync with the one used in pom.xml in order to get correct syntax completion. -@Library('github.com/cloudogu/ces-build-lib@9aadeeb') +@Library('github.com/cloudogu/ces-build-lib@59d3e94') import com.cloudogu.ces.cesbuildlib.* node() { // No specific label