summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/notes/stores/utils.js
diff options
context:
space:
mode:
authorDonald Cook <dcook@gitlab.com>2019-08-05 09:31:40 -0500
committerDonald Cook <dcook@gitlab.com>2019-08-05 09:31:40 -0500
commitb8834bbaf6207ac816152a264fb25332c1f773df (patch)
tree659fbb39a349580094146c7dc4f0ff7de70a452e /app/assets/javascripts/notes/stores/utils.js
parentc52721aaab275ff25a9aa7e60b76a8ccb04d9ce3 (diff)
downloadgitlab-ce-b8834bbaf6207ac816152a264fb25332c1f773df.tar.gz
Diffstat (limited to 'app/assets/javascripts/notes/stores/utils.js')
-rw-r--r--app/assets/javascripts/notes/stores/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/notes/stores/utils.js b/app/assets/javascripts/notes/stores/utils.js
index ed4cef4a917..97dcd54fe88 100644
--- a/app/assets/javascripts/notes/stores/utils.js
+++ b/app/assets/javascripts/notes/stores/utils.js
@@ -21,7 +21,7 @@ export const getQuickActionText = note => {
text = __('Applying multiple commands');
} else {
const commandDescription = executedCommands[0].description.toLowerCase();
- text = sprintf(__('Applying command to %{commandDescription}', { commandDescription }));
+ text = sprintf(__('Applying command to %{commandDescription}'), { commandDescription });
}
}