From e25d4aee9ce6555a5aede1d3b4d92bc155d0f127 Mon Sep 17 00:00:00 2001 From: Herman Meerlo Date: Tue, 26 Nov 2024 13:01:04 +0100 Subject: [PATCH 1/2] Add items property to autocomplete to specify what type of data it contains --- assets/app/schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/assets/app/schema.json b/assets/app/schema.json index 9e4f4f7f..8b3fd16e 100755 --- a/assets/app/schema.json +++ b/assets/app/schema.json @@ -204,6 +204,14 @@ "type": "object" } ] + }, + "items": { + "type": "string", + "enum": [ + "variable", + "flow", + "user" + ] } } }, From 39e882b05a50ac385bc30b37e7fc7225043c7c7e Mon Sep 17 00:00:00 2001 From: Herman Meerlo Date: Mon, 27 Jan 2025 13:43:27 +0100 Subject: [PATCH 2/2] PR rework --- assets/app/schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/app/schema.json b/assets/app/schema.json index 8b3fd16e..379415a2 100755 --- a/assets/app/schema.json +++ b/assets/app/schema.json @@ -209,7 +209,7 @@ "type": "string", "enum": [ "variable", - "flow", + "flow_or_advanced_flow", "user" ] }