Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-11 12:08:16 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-11 12:08:16 +0300
commita64fb464b4081ec468da3fec97dfdede1fbd55e7 (patch)
tree124372fd54583716a964152ba68b2df80ff09140 /app/assets/javascripts/alerts_service_settings
parent1b3eb6f388e2c376cc95adbd4babd8bad76eb4d6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/alerts_service_settings')
-rw-r--r--app/assets/javascripts/alerts_service_settings/components/alerts_service_form.vue8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/assets/javascripts/alerts_service_settings/components/alerts_service_form.vue b/app/assets/javascripts/alerts_service_settings/components/alerts_service_form.vue
index b96c7050e71..ac30b086875 100644
--- a/app/assets/javascripts/alerts_service_settings/components/alerts_service_form.vue
+++ b/app/assets/javascripts/alerts_service_settings/components/alerts_service_form.vue
@@ -1,6 +1,6 @@
<script>
import {
- GlDeprecatedButton,
+ GlButton,
GlFormGroup,
GlFormInput,
GlLink,
@@ -26,7 +26,7 @@ export default {
COPY_TO_CLIPBOARD: __('Copy'),
RESET_KEY: __('Reset key'),
components: {
- GlDeprecatedButton,
+ GlButton,
GlFormGroup,
GlFormInput,
GlLink,
@@ -167,9 +167,7 @@ export default {
<clipboard-button :text="authorizationKey" :title="$options.COPY_TO_CLIPBOARD" />
</span>
</div>
- <gl-deprecated-button v-gl-modal.authKeyModal class="mt-2">{{
- $options.RESET_KEY
- }}</gl-deprecated-button>
+ <gl-button v-gl-modal.authKeyModal class="mt-2">{{ $options.RESET_KEY }}</gl-button>
<gl-modal
modal-id="authKeyModal"
:title="$options.RESET_KEY"