We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7f9d2 commit 0407ba9Copy full SHA for 0407ba9
public/pages/Rules/components/RuleEditor/YamlRuleEditor.tsx
@@ -20,8 +20,6 @@ export interface YamlEditorState {
20
}
21
22
const mapYamlObjectToYamlString = (rule: Rule): string => {
23
- console.log('mapYamlObjectToYamlString', rule);
24
-
25
try {
26
if (!rule.detection) {
27
const { detection, ...ruleWithoutDetection } = rule;
@@ -36,8 +34,6 @@ const mapYamlObjectToYamlString = (rule: Rule): string => {
36
34
};
37
35
38
const mapRuleToYamlObject = (rule: Rule): any => {
39
- console.log('mapRuleToYamlObject', rule);
40
41
let detection = undefined;
42
if (rule.detection) {
43
0 commit comments