Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ZitaNemeckova committed Jul 10, 2019
1 parent 306af2b commit b8e2671
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class CopyCatalogForm extends Component {

handleError = (error) => {
const { data: { error: { message } } } = error;
return !!message ? message : __('There was an error in copying. Item is not valid or Ansible.');
return !!message ? message : __('Selected item can not be copied. It\'s Ansible Playbook or not valid.');
};

submitValues = (values) => {
Expand Down

0 comments on commit b8e2671

Please sign in to comment.