-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Can't display link without Strong tag #549
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
Comments
I use |
The
div { link_to "matt", app_dashboard() } This is how I also render a partial in a show event: ActiveAdmin.register Post do
show :title => proc { resource.name } do
panel "Information" do
"Some info here"
end
insert_text_node_if_string( render :partial => "invoices" )
end
end |
Hi both, thanks a lot ! |
I have encounted a strange issue when render page in dashboard.
Below is the src code. It's so strange that active admin can't display link on section if I just put : link_to xxx, xxx_path without a tag around of it.
section xxxx do
end
link_to xxx, xxx_path # it works if I use this strong {link_to xxx, xxx_path} instead
end
The text was updated successfully, but these errors were encountered: