mirror of https://github.com/apache/cloudstack.git
ui: fix webhook filters listing (#13068)
This commit is contained in:
parent
8906aa1d46
commit
a17bff9ba8
|
|
@ -4167,6 +4167,7 @@
|
|||
"message.warn.select.template": "Please select a Template for Registration.",
|
||||
"message.warn.zone.mtu.update": "Please note that this limit won't affect pre-existing Network's MTU settings",
|
||||
"message.webhook.deliveries.time.filter": "Webhook deliveries list can be filtered based on date-time. Select 'Custom' for specifying start and end date range.",
|
||||
"message.webhook.filter.add": "Webhook deliveries can be controlled using filters (currently by Event type). Please select the parameters to add to the applied filters list.",
|
||||
"message.zone.creation.complete": "Zone creation complete.",
|
||||
"message.zone.detail.description": "Populate Zone details.",
|
||||
"message.zone.detail.hint": "A Zone is the largest organizational unit in CloudStack, and it typically corresponds to a single datacenter. Zones provide physical isolation and redundancy. A zone consists of one or more Pods (each of which contains hosts and primary storage servers) and a secondary storage server which is shared by all pods in the zone.",
|
||||
|
|
|
|||
|
|
@ -949,7 +949,7 @@
|
|||
style="margin-left: 5px"
|
||||
:actions="actions"
|
||||
:resource="record"
|
||||
:enabled="quickViewEnabled() && actions.length > 0"
|
||||
:enabled="quickViewEnabled(actions, columns, column.key)"
|
||||
@exec-action="$parent.execAction"
|
||||
/>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="add-row">
|
||||
<p>{{ $t('message.webhook.filter.add') }}</p>
|
||||
<a-form
|
||||
:ref="addFormRef"
|
||||
:model="addFilterForm"
|
||||
|
|
@ -90,7 +91,7 @@
|
|||
{{ (selectedRowKeys && selectedRowKeys.length > 0) ? $t('label.action.delete.webhook.filters') : $t('label.action.clear.webhook.filters') }}
|
||||
</a-button>
|
||||
<list-view
|
||||
:tabLoading="tabLoading"
|
||||
:loading="tabLoading"
|
||||
:columns="columns"
|
||||
:items="filters"
|
||||
:actions="actions"
|
||||
|
|
|
|||
Loading…
Reference in New Issue