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
Add support nested params. For example:
/events?filter%5Bname%5D=sent+message <%= active_link_to(_('Sent message'), events_url(filter: { name: 'sent message' }), class_active: 'current', active: { filter: { name: 'sent message' } }, wrap_tag: :li ) %>
The text was updated successfully, but these errors were encountered:
For more involved cases like these I just drop to using a boolean:
- active = some_logic_to_figure_out_if_active = active_link_to foo_path, active: active, other: params
Sorry, something went wrong.
No branches or pull requests
Add support nested params. For example:
The text was updated successfully, but these errors were encountered: