FIX: Ensure <script> handlebars templates are namespaced correctly (#18178)

This regressed in 7e74dd0afe
This commit is contained in:
David Taylor
2022-09-04 13:01:10 +02:00
committed by GitHub
parent d262775c3e
commit f4e1d0c546
3 changed files with 3 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ class ThemeField < ActiveRecord::Base
if is_raw
js_compiler.append_raw_template(name, hbs_template)
else
js_compiler.append_ember_template(name, hbs_template)
js_compiler.append_ember_template("discourse/templates/#{name}", hbs_template)
end
rescue ThemeJavascriptCompiler::CompileError => ex
errors << ex.message