Skip to content

Commit

Permalink
UI: change 'integartion user' to 'API user' (#6958)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyaug authored Nov 9, 2023
1 parent 1a1f52d commit ff38131
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/src/pages/auth/users/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ const UsersContainer = ({nextPage, refresh, setRefresh, error, loading, userList
setRefresh(!refresh);
});
}}
title={canInviteUsers ? "Create Integration User" : "Create User"}
placeholder={canInviteUsers ? "Integration Name (e.g. Spark)" : "Username (e.g. 'jane.doe')"}
title={canInviteUsers ? "Create API User" : "Create User"}
placeholder={canInviteUsers ? "Name (e.g. Spark)" : "Username (e.g. 'jane.doe')"}
actionName={"Create"}
validationFunction={disallowPercentSign(INVALID_USER_NAME_ERROR_MESSAGE)}
/>
Expand Down Expand Up @@ -147,7 +147,7 @@ const UserActionsActionGroup = ({canInviteUsers, selected, onClickInvite, onClic
<Button
variant="success"
onClick={onClickCreate}>
{canInviteUsers ? "Create Integration User" : "Create User"}
{canInviteUsers ? "Create API User" : "Create User"}
</Button>
<ConfirmationButton
onConfirm={onConfirmDelete}
Expand Down

0 comments on commit ff38131

Please sign in to comment.