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-08-06 00:09:40 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-08-06 00:09:40 +0300
commitad9eb72915f1be40da3ebe287274fe2bae62e46b (patch)
treee5a029b2edbce0e84a54b6ff4d18e8240680c4c4 /app/assets/javascripts/grafana_integration
parentf8d20b20be74c283fe8bfe81abfd2d132a500968 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/grafana_integration')
-rw-r--r--app/assets/javascripts/grafana_integration/components/grafana_integration.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/grafana_integration/components/grafana_integration.vue b/app/assets/javascripts/grafana_integration/components/grafana_integration.vue
index 86ac3a5b580..8d1e542b8ad 100644
--- a/app/assets/javascripts/grafana_integration/components/grafana_integration.vue
+++ b/app/assets/javascripts/grafana_integration/components/grafana_integration.vue
@@ -1,11 +1,11 @@
<script>
-import { GlDeprecatedButton, GlFormGroup, GlFormInput, GlFormCheckbox } from '@gitlab/ui';
+import { GlButton, GlFormGroup, GlFormInput, GlFormCheckbox } from '@gitlab/ui';
import { mapState, mapActions } from 'vuex';
import Icon from '~/vue_shared/components/icon.vue';
export default {
components: {
- GlDeprecatedButton,
+ GlButton,
GlFormCheckbox,
GlFormGroup,
GlFormInput,
@@ -58,7 +58,7 @@ export default {
<h3 class="js-section-header h4">
{{ s__('GrafanaIntegration|Grafana authentication') }}
</h3>
- <gl-deprecated-button class="js-settings-toggle">{{ __('Expand') }}</gl-deprecated-button>
+ <gl-button class="js-settings-toggle">{{ __('Expand') }}</gl-button>
<p class="js-section-sub-header">
{{ s__('GrafanaIntegration|Embed Grafana charts in GitLab issues.') }}
</p>
@@ -93,9 +93,9 @@ export default {
</a>
</p>
</gl-form-group>
- <gl-deprecated-button variant="success" @click="updateGrafanaIntegration">
+ <gl-button variant="success" category="primary" @click="updateGrafanaIntegration">
{{ __('Save Changes') }}
- </gl-deprecated-button>
+ </gl-button>
</form>
</div>
</section>