From 440d7805cbccba36b619913d66165afb456f6469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Jandre?= <48719461+JoaoJandre@users.noreply.github.com> Date: Tue, 20 Dec 2022 10:53:53 -0300 Subject: [PATCH] Support for parameter `cidrlist` added to the UI (#6869) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: João Jandre --- ui/src/components/view/BulkActionProgress.vue | 3 +++ ui/src/components/view/BulkActionView.vue | 13 +++++----- ui/src/components/widgets/TooltipLabel.vue | 10 ++++++-- ui/src/views/network/LoadBalancing.vue | 24 ++++++++++++++++--- 4 files changed, 39 insertions(+), 11 deletions(-) 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 @@