diff --git a/ui/src/components/view/BulkActionProgress.vue b/ui/src/components/view/BulkActionProgress.vue index 085c458f4301..ce99d23354cf 100644 --- a/ui/src/components/view/BulkActionProgress.vue +++ b/ui/src/components/view/BulkActionProgress.vue @@ -80,6 +80,9 @@ +
diff --git a/ui/src/components/view/BulkActionView.vue b/ui/src/components/view/BulkActionView.vue index 38e3c62465f4..e30a8676d6ee 100644 --- a/ui/src/components/view/BulkActionView.vue +++ b/ui/src/components/view/BulkActionView.vue @@ -82,6 +82,9 @@ +
@@ -149,12 +152,6 @@ export default { default: () => {} } }, - filters: { - capitalise: val => { - if (val === 'all') return 'All' - return val.toUpperCase() - } - }, inject: ['parentFetchData'], data () { return { @@ -164,6 +161,10 @@ export default { } }, methods: { + capitalise (val) { + if (val === 'all') return 'All' + return val.toUpperCase() + }, handleCancel () { this.$emit('handle-cancel') }, diff --git a/ui/src/components/widgets/TooltipLabel.vue b/ui/src/components/widgets/TooltipLabel.vue index 634aed697712..2874b1e7aa9a 100644 --- a/ui/src/components/widgets/TooltipLabel.vue +++ b/ui/src/components/widgets/TooltipLabel.vue @@ -17,7 +17,12 @@