Skip to content

Commit

Permalink
Merge pull request #4 from DavidDurman/flow-types
Browse files Browse the repository at this point in the history
Use new flow types when filtering ui.Integrations
  • Loading branch information
DavidDurman authored Feb 26, 2024
2 parents e2c2b68 + c25e5f8 commit 6f070b3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}]
}
});
Expand Down

0 comments on commit 6f070b3

Please sign in to comment.