lightning-flow-scanner-core
Advanced tools
Comparing version 3.17.1-beta202406010635.0 to 3.17.1-beta202406011706.0
@@ -45,3 +45,3 @@ "use strict"; | ||
const nodeElementString = JSON.stringify(node.element); | ||
if (node.subtype == "status" && nodeElementString != '"Active"') { | ||
if (node.subtype == "status" && nodeElementString != '\"Active\"') { | ||
inactiveFlows.push(node); | ||
@@ -52,3 +52,3 @@ } | ||
for (const det of inactiveFlows) { | ||
results.push(new core.ResultDetails(det)); | ||
results.push(new core.ResultDetails(new core.FlowAttribute(JSON.stringify(det.element), det.subtype, "!= Active"))); | ||
} | ||
@@ -55,0 +55,0 @@ return new core.RuleResult(this, results); |
{ | ||
"name": "lightning-flow-scanner-core", | ||
"version": "3.17.1-beta202406010635.0", | ||
"version": "3.17.1-beta202406011706.0", | ||
"main": "out/**", | ||
@@ -5,0 +5,0 @@ "types": "index.d.ts", |
@@ -22,3 +22,3 @@ import { RuleCommon } from "../models/RuleCommon"; | ||
const nodeElementString = JSON.stringify(node.element); | ||
if (node.subtype == "status" && nodeElementString != '"Active"') { | ||
if (node.subtype == "status" && nodeElementString != '\"Active\"') { | ||
inactiveFlows.push(node); | ||
@@ -29,3 +29,3 @@ } | ||
for (const det of inactiveFlows) { | ||
results.push(new core.ResultDetails(det)); | ||
results.push(new core.ResultDetails(new core.FlowAttribute(JSON.stringify(det.element), det.subtype,"!= Active"))); | ||
} | ||
@@ -32,0 +32,0 @@ return new core.RuleResult(this, results); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1174382