Change 'Delete' copy to 'Remove' for Chronograf User button & notification

pull/10616/head
Jared Scheib 2017-11-10 01:59:24 -08:00
parent 48565343b7
commit 3832f60a4c
2 changed files with 2 additions and 1 deletions

View File

@ -155,7 +155,7 @@ export const deleteUserAsync = user => async dispatch => {
dispatch(
publishAutoDismissingNotification(
'success',
`User deleted: ${user.scheme}::${user.provider}::${user.name}`
`User removed from organization: ${user.scheme}::${user.provider}::${user.name}`
)
)
} catch (error) {

View File

@ -68,6 +68,7 @@ const UsersTableRow = ({
</td>
<td className="text-right" style={{width: colActions}} />
<DeleteConfirmTableCell
text="Remove"
onDelete={onDelete}
item={user}
buttonSize="btn-xs"