Join Slack
Powered by
Each emitted loop gets the same group id. However,...
# compose
c
Chuck Jazdzewski [G]
05/23/2019, 4:43 PM
Each emitted loop gets the same group id. However, you can introduce a key that is combined with the source property to introduce a group specific key. The
Key
component can be used for that. For example,
Copy code
for (item in items) { Key(item) { Item(item) } }
Open in Slack
Previous
Next