From c4727e2492d4b57fff78d4bd7a2119525cf172ee Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Fri, 22 Nov 2019 02:05:06 +0100 Subject: [PATCH] Automated cherry pick of #3588 (#3596) * MM-20201 Fixed asterisk on Nickname Added optional prop to the Nickname field, which removes the asterisk * MM-20201 Updated Position field also Added optional prop to position field. --- app/screens/edit_profile/edit_profile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/screens/edit_profile/edit_profile.js b/app/screens/edit_profile/edit_profile.js index ed623ede3..be12a09d6 100644 --- a/app/screens/edit_profile/edit_profile.js +++ b/app/screens/edit_profile/edit_profile.js @@ -470,6 +470,7 @@ export default class EditProfile extends PureComponent { theme={theme} value={nickname} isLandscape={isLandscape} + optional={true} /> ); }; @@ -493,6 +494,7 @@ export default class EditProfile extends PureComponent { theme={theme} value={position} isLandscape={isLandscape} + optional={true} /> ); };