Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
Add missing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
fureigh committed Jul 21, 2017
1 parent b7815d0 commit d9984cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion static_src/actions/user_actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const userActions = {
if (usersSpaces.length > 0) {
const description = 'This user can\'t be removed because they still have a space ' +
'role within the organization. Please remove all space ' +
'associations before removing this user from the organization.' +
'associations before removing this user from the organization. ' +
'To review how, click the "Managing Teammates" link below.';
userActions.createUserSpaceAssociationNotification(description);
} else {
Expand Down
2 changes: 1 addition & 1 deletion static_src/test/unit/util/cf_api.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ describe('cfApi', function() {

const description = 'This user can\'t be removed because they still ' +
'have a space role within the organization. Please remove all ' +
'space associations before removing this user from the organization.' +
'space associations before removing this user from the organization. ' +
'To review how, click the "Managing Teammates" link below.';

cfApi.deleteUser(expectedUserGuid, expectedOrgGuid).then(() => {
Expand Down
2 changes: 1 addition & 1 deletion static_src/util/cf_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ export default {
if (userHasSpaceRoles) {
const description = 'This user can\'t be removed because they still have a space ' +
'role within the organization. Please remove all space ' +
'associations before removing this user from the organization.' +
'associations before removing this user from the organization. ' +
'To review how, click the "Managing Teammates" link below.';
userActions.createUserSpaceAssociationNotification(description);
} else if (error.response.data) {
Expand Down

0 comments on commit d9984cc

Please sign in to comment.