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

(cherry picked from commit 9191ec2)
  • Loading branch information
h-kataria authored and simaishi committed Jul 21, 2020
1 parent 12fdf11 commit c8f8a74
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 c8f8a74

Please sign in to comment.