From efa789f07fdf965a93a2b6fca3dbcb5072dd800c Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 19 Aug 2023 14:04:24 +0930 Subject: [PATCH] feat(glpi): correct debug check now the flow automagically runs as intended !12 --- flows.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/flows.json b/flows.json index bab60f8..60f78b6 100644 --- a/flows.json +++ b/flows.json @@ -9677,14 +9677,18 @@ "type": "switch", "z": "104f7938a23fe82f", "name": "Debug No Auto-run", - "property": "$boolean($globalContext('config.glpi.debug_on'))\t", - "propertyType": "jsonata", + "property": "config.glpi.debug_on", + "propertyType": "global", "rules": [ { - "t": "true" + "t": "eq", + "v": "true", + "vt": "str" }, { - "t": "false" + "t": "eq", + "v": "false", + "vt": "str" } ], "checkall": "true",