Skip to content

Commit

Permalink
Merge pull request #7221 from lfu/i18n_typo
Browse files Browse the repository at this point in the history
Fix a string typo
  • Loading branch information
h-kataria authored Jul 20, 2020
2 parents 2a5cbd1 + aad759a commit 9191ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/components/remove-generic-item-modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const parseApiError = (error) => {
export const removeItems = (items, apiUrl, asyncDelete, redirectUrl, treeSelect) => {
let apiPromises = [];
let flashArray = [];
const deleteMessage = asyncDelete ? __('Deletion of item %s has been successfuly initiated') : __('The item "%s" has been successfully deleted');
const deleteMessage = asyncDelete ? __('Deletion of item %s has been successfully initiated') : __('The item "%s" has been successfully deleted');

miqSparkleOn();
items.forEach(item => {
Expand Down

0 comments on commit 9191ec2

Please sign in to comment.