From 47a7b4cad0844aea34928eecef0af768457f172d Mon Sep 17 00:00:00 2001 From: David Taylor Date: Tue, 21 Jun 2022 11:32:46 +0100 Subject: [PATCH] DEV: Use path instead of absolute URL for theme test links (#17172) In development, this avoids the surprising switch from ember-cli to rails --- app/views/qunit/theme.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/qunit/theme.html.erb b/app/views/qunit/theme.html.erb index bee0041d9e0..b9e01915269 100644 --- a/app/views/qunit/theme.html.erb +++ b/app/views/qunit/theme.html.erb @@ -41,7 +41,7 @@ <%- else %>

Select a theme/component:

<%- @suggested_themes.each do |(id, name)| %> -

<%= link_to name, theme_qunit_url(id: id) %>

+

<%= link_to name, theme_qunit_path(id: id) %>

<%- end %> <%- end %> <%- end %>