mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
fix rule list pages
This commit is contained in:
parent
f7062fed86
commit
1e68d87d72
3 changed files with 13 additions and 13 deletions
|
@ -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'},
|
||||
];
|
||||
|
|
|
@ -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'},
|
||||
|
|
|
@ -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'},
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue