diff options
author | Phil Hughes <me@iamphill.com> | 2018-06-26 15:01:20 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-06-27 10:44:14 +0100 |
commit | 93e5d8c7520b21561b96cbbe8134283d3aa728f9 (patch) | |
tree | f6ddf8297be115322bebad5e1e88bf8fe5674855 | |
parent | 702440ee489ff47f5997fbef48622ca7028b4ac2 (diff) | |
download | gitlab-ce-93e5d8c7520b21561b96cbbe8134283d3aa728f9.tar.gz |
:face_palm: fixed error message
-rw-r--r-- | app/assets/javascripts/ide/stores/actions/project.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/ide/stores/actions/project.js b/app/assets/javascripts/ide/stores/actions/project.js index 326d284ffcf..20fd12596f9 100644 --- a/app/assets/javascripts/ide/stores/actions/project.js +++ b/app/assets/javascripts/ide/stores/actions/project.js @@ -107,7 +107,7 @@ export const createNewBranchFromDefault = ({ state, getters }, branch) => export const showBranchNotFoundError = ({ dispatch }, branchId) => { dispatch('setErrorMessage', { text: sprintf( - __("Branch %{branchName} was not found in project's repository."), + __("Branch %{branchName} was not found in this project's repository."), { branchName: `<strong>${_.escape(branchId)}</strong>`, }, |