From bfe526be3f6cd6d32eef7f4fb18ece93ff05f610 Mon Sep 17 00:00:00 2001 From: Ted Kruijff Date: Thu, 22 Feb 2024 15:21:53 +0100 Subject: [PATCH] fix newlines in description --- src/core/operations/ParseEthernetFrame.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/ParseEthernetFrame.mjs b/src/core/operations/ParseEthernetFrame.mjs index e08b192d..9dac5d57 100644 --- a/src/core/operations/ParseEthernetFrame.mjs +++ b/src/core/operations/ParseEthernetFrame.mjs @@ -22,7 +22,7 @@ class ParseEthernetFrame extends Operation { this.name = "Parse Ethernet frame"; this.module = "Default"; - this.description = "Parses an Ethernet frame and either shows the deduced values (Source and destination MAC, VLANs) or returns the packet data.\\n\\nGood for use in conjunction with the Parse IPv4, and Parse TCP/UDP recipes."; + this.description = "Parses an Ethernet frame and either shows the deduced values (Source and destination MAC, VLANs) or returns the packet data.

Good for use in conjunction with the Parse IPv4, and Parse TCP/UDP recipes."; this.infoURL = "https://en.wikipedia.org/wiki/Ethernet_frame#Frame_%E2%80%93_data_link_layer"; this.inputType = "string"; this.outputType = "html";