summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/pages/details.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/registry/explorer/pages/details.vue')
-rw-r--r--app/assets/javascripts/registry/explorer/pages/details.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/assets/javascripts/registry/explorer/pages/details.vue b/app/assets/javascripts/registry/explorer/pages/details.vue
index b558ed51a5b..6afd4d1107a 100644
--- a/app/assets/javascripts/registry/explorer/pages/details.vue
+++ b/app/assets/javascripts/registry/explorer/pages/details.vue
@@ -3,7 +3,7 @@ import { mapState, mapActions, mapGetters } from 'vuex';
import {
GlTable,
GlFormCheckbox,
- GlButton,
+ GlDeprecatedButton,
GlIcon,
GlTooltipDirective,
GlPagination,
@@ -41,7 +41,7 @@ export default {
components: {
GlTable,
GlFormCheckbox,
- GlButton,
+ GlDeprecatedButton,
GlIcon,
ClipboardButton,
GlPagination,
@@ -250,7 +250,7 @@ export default {
/>
</template>
<template #head(actions)>
- <gl-button
+ <gl-deprecated-button
ref="bulkDeleteButton"
v-gl-tooltip
:disabled="!selectedItems || selectedItems.length === 0"
@@ -261,7 +261,7 @@ export default {
@click="deleteMultipleItems()"
>
<gl-icon name="remove" />
- </gl-button>
+ </gl-deprecated-button>
</template>
<template #cell(checkbox)="{index}">
@@ -304,7 +304,7 @@ export default {
</span>
</template>
<template #cell(actions)="{index, item}">
- <gl-button
+ <gl-deprecated-button
ref="singleDeleteButton"
:title="s__('ContainerRegistry|Remove tag')"
:aria-label="s__('ContainerRegistry|Remove tag')"
@@ -314,7 +314,7 @@ export default {
@click="deleteSingleItem(index)"
>
<gl-icon name="remove" />
- </gl-button>
+ </gl-deprecated-button>
</template>
<template #empty>