Commit b683d6e6 authored by Clement Ho's avatar Clement Ho

Merge branch '63474-applying-a-quick-action-does-not-show-the-correct-message' into 'master'

Fixed bug from extra parenthesis

Closes #63474

See merge request gitlab-org/gitlab-ce!31479
parents cafeb134 b8834bba
...@@ -21,7 +21,7 @@ export const getQuickActionText = note => { ...@@ -21,7 +21,7 @@ export const getQuickActionText = note => {
text = __('Applying multiple commands'); text = __('Applying multiple commands');
} else { } else {
const commandDescription = executedCommands[0].description.toLowerCase(); const commandDescription = executedCommands[0].description.toLowerCase();
text = sprintf(__('Applying command to %{commandDescription}', { commandDescription })); text = sprintf(__('Applying command to %{commandDescription}'), { commandDescription });
} }
} }
......
...@@ -101,10 +101,12 @@ Sidebar.prototype.toggleTodo = function(e) { ...@@ -101,10 +101,12 @@ Sidebar.prototype.toggleTodo = function(e) {
this.todoUpdateDone(data); this.todoUpdateDone(data);
}) })
.catch(() => .catch(() =>
flash(sprintf(__('There was an error %{message} todo.')), { flash(
message: sprintf(__('There was an error %{message} todo.'), {
ajaxType === 'post' ? s__('RightSidebar|adding a') : s__('RightSidebar|deleting the'), message:
}), ajaxType === 'post' ? s__('RightSidebar|adding a') : s__('RightSidebar|deleting the'),
}),
),
); );
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment