Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The mount should be optional when returning a component from a each or conditional. #182

Open
JSideris opened this issue May 4, 2024 · 0 comments
Assignees
Labels

Comments

@JSideris
Copy link
Owner

JSideris commented May 4, 2024

For example:

dot.each(this.values, (m)=>{
	return dot.mount(new DisplayRow(m));
})

Should be achievable with

dot.each(this.values, (m)=>{
	return new DisplayRow(m);
})
@JSideris JSideris added the bug label May 4, 2024
@JSideris JSideris self-assigned this May 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: No status
Development

No branches or pull requests

1 participant