diff options
author | Nick Thomas <nick@gitlab.com> | 2019-01-24 00:23:19 +0000 |
---|---|---|
committer | Nick Thomas <nick@gitlab.com> | 2019-01-24 00:23:19 +0000 |
commit | 0a1c9b9b348c193ee17780f985447ee4534db888 (patch) | |
tree | a0039e02bef254ec305803fe34f94d3fcc629dd3 /app/assets | |
parent | a949043df7e36376e9cb450adf91095961163056 (diff) | |
parent | 3a46e719dfd055ffc2583398d9fa2c92b70cba63 (diff) | |
download | gitlab-ce-0a1c9b9b348c193ee17780f985447ee4534db888.tar.gz |
Merge branch 'fix-loose-typo' into 'master'
Fix 'loose' typo
Closes #56248
See merge request gitlab-org/gitlab-ce!24330
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/javascripts/ide/components/commit_sidebar/list.vue | 2 | ||||
-rw-r--r-- | app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/ide/components/commit_sidebar/list.vue b/app/assets/javascripts/ide/components/commit_sidebar/list.vue index a1094570275..4f1260de0bc 100644 --- a/app/assets/javascripts/ide/components/commit_sidebar/list.vue +++ b/app/assets/javascripts/ide/components/commit_sidebar/list.vue @@ -87,7 +87,7 @@ export default { }, }, discardModalText: __( - "You will loose all the unstaged changes you've made in this project. This action cannot be undone.", + "You will lose all the unstaged changes you've made in this project. This action cannot be undone.", ), }; </script> diff --git a/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue b/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue index e054be86c1e..09c9d135614 100644 --- a/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue +++ b/app/assets/javascripts/ide/components/commit_sidebar/stage_button.vue @@ -72,7 +72,7 @@ export default { footer-primary-button-variant="danger" @submit="discardFileChanges(path)" > - {{ __("You will loose all changes you've made to this file. This action cannot be undone.") }} + {{ __("You will lose all changes you've made to this file. This action cannot be undone.") }} </gl-modal> </div> </template> |