From f736e53f1439d077944f0f6abf9f11c9238951c5 Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Fri, 2 Aug 2024 11:56:47 +0200 Subject: [PATCH] fix icmp definition --- client/src/definitions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/definitions.ts b/client/src/definitions.ts index 138fab7..81d0d3d 100644 --- a/client/src/definitions.ts +++ b/client/src/definitions.ts @@ -249,7 +249,7 @@ export const editTypes: { [key: string]: { [key: string]: any } } = { 'icmp': { display: 'ICMP', fields: { - icmp_code: { is: 'NumberBox', label: 'ICMP Code' }, + code: { is: 'NumberBox', label: 'ICMP Code' }, }, }, 'group': { @@ -362,4 +362,4 @@ export const editTypes: { [key: string]: { [key: string]: any } } = { }, }, }, -}; \ No newline at end of file +};