fix rule list pages

This commit is contained in:
Samuel Lorch 2023-11-04 15:32:26 +01:00
parent f7062fed86
commit 1e68d87d72
3 changed files with 13 additions and 13 deletions

View file

@ -9,11 +9,11 @@ let selection = $ref([] as number[]);
const columns = [
{heading: 'Name', path: 'name'},
{heading: 'Source', path: 'match.source_addresses'},
{heading: 'Destination', path: 'match.destination_addresses'},
{heading: 'Service', path: 'match.services'},
{heading: 'Translated Address', path: 'address'},
{heading: 'Translated Service', path: 'service'},
{heading: 'Source', path: 'source_addresses'},
{heading: 'Destination', path: 'destination_addresses'},
{heading: 'Service', path: 'services'},
{heading: 'Translated Address', path: 'dnat_address'},
{heading: 'Translated Service', path: 'dnat_service'},
{heading: 'Counter', path: 'counter'},
{heading: 'Comment', path: 'comment'},
];

View file

@ -9,9 +9,9 @@ let selection = $ref([] as number[]);
const columns = [
{heading: 'Name', path: 'name'},
{heading: 'Source', path: 'match.source_addresses'},
{heading: 'Destination', path: 'match.destination_addresses'},
{heading: 'Service', path: 'match.services'},
{heading: 'Source', path: 'source_addresses'},
{heading: 'Destination', path: 'destination_addresses'},
{heading: 'Service', path: 'services'},
{heading: 'Verdict', path: 'verdict'},
{heading: 'Counter', path: 'counter'},
{heading: 'Comment', path: 'comment'},

View file

@ -9,11 +9,11 @@ let selection = $ref([] as number[]);
const columns = [
{heading: 'Name', path: 'name'},
{heading: 'Source', path: 'match.source_addresses'},
{heading: 'Destination', path: 'match.destination_addresses'},
{heading: 'Service', path: 'match.services'},
{heading: 'Translated Address', path: 'address'},
{heading: 'Translated Service', path: 'service'},
{heading: 'Source', path: 'source_addresses'},
{heading: 'Destination', path: 'destination_addresses'},
{heading: 'Service', path: 'services'},
{heading: 'Translated Address', path: 'snat_type.snat.address'},
{heading: 'Translated Service', path: 'snat_type.snat.service'},
{heading: 'Counter', path: 'counter'},
{heading: 'Comment', path: 'comment'},
];