Close button on view user in user management dashboard
[osm/UI.git] / skyquake / plugins / user_management / src / userProfile / userProfile.jsx
index d7cb600..a3fbced 100644 (file)
@@ -126,6 +126,10 @@ class UserProfileDashboard extends React.Component {
             let newOne = state['new-password'];
             let confirmOne = state['confirm-password'];
             if(true) {
+                if(!oldOne || !newOne) {
+                     self.props.actions.showNotification('Please fill in all fields.');
+                    return false;
+                }
                 if(oldOne == newOne) {
                     self.props.actions.showNotification('Your new password must not match your old one');
                     return false;
@@ -237,7 +241,9 @@ class UserProfileDashboard extends React.Component {
                             {passwordSectionHTML}
 
                         </Panel>
-                         {formButtonsHTML}
+                        <div  className="buttonSection">
+                            {formButtonsHTML}
+                        </div>
                     </PanelWrapper>
 
                 </PanelWrapper>