From c25e5f89559d8c85b2959b278bd803fa02d2098f Mon Sep 17 00:00:00 2001 From: David Durman Date: Mon, 26 Feb 2024 16:09:55 +0100 Subject: [PATCH] Use new flow types when filtering ui.Integrations --- main.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.js b/main.js index a4b5034..f59b046 100644 --- a/main.js +++ b/main.js @@ -71,11 +71,10 @@ function createWidgets() { customFilter: [{ // Show only integration templates shared with users in this demo app. ...(DOMAIN_FILTER && { 'sharedWith.0.domain': DOMAIN_FILTER }), - type: 'integration' + type: 'integration-template' }, { userId: appmixer.get('user').id, - templateId: '>0' - //type: 'integration-instance' // Uncomment and remove line above once v6 is released. + type: 'integration-instance' }] } });