Commit 8210d2eb authored by Mike Greiling's avatar Mike Greiling

fix bug in webpack_helper in which force_same_domain argument was ignored...

fix bug in webpack_helper in which force_same_domain argument was ignored breaking local rspec tests
parent 218136ac
......@@ -2,7 +2,7 @@ require 'webpack/rails/manifest'
module WebpackHelper
def webpack_bundle_tag(bundle, force_same_domain: false)
javascript_include_tag(*gitlab_webpack_asset_paths(bundle, force_same_domain: true))
javascript_include_tag(*gitlab_webpack_asset_paths(bundle, force_same_domain: force_same_domain))
end
# override webpack-rails gem helper until changes can make it upstream
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment