We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
partial
While working on the roda-turbo plugin, it dawned on me that the partial method doesn't support a keyword arguments-only signature. You can do this:
roda-turbo
partial "path/to/template", locals: { abc: 123 }
But not this:
partial template: "path/to/template", locals: { abc: 123 }
Which makes it hard to pass rendering options for the turbo_stream tag builder directly to partial. We should support both signatures.
turbo_stream
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
While working on the
roda-turbo
plugin, it dawned on me that thepartial
method doesn't support a keyword arguments-only signature. You can do this:But not this:
Which makes it hard to pass rendering options for the
turbo_stream
tag builder directly topartial
. We should support both signatures.The text was updated successfully, but these errors were encountered: