web/app/helpers/settings/benchmark_configurations_helper.rb
changeset 236 2565b32e93b3
parent 106 eac4098d544d
child 241 6c56f95bddd3
--- a/web/app/helpers/settings/benchmark_configurations_helper.rb	Tue Oct 28 16:50:52 2014 +0100
+++ b/web/app/helpers/settings/benchmark_configurations_helper.rb	Tue Oct 28 17:21:19 2014 +0100
@@ -1,9 +1,11 @@
 module Settings::BenchmarkConfigurationsHelper
+
   def all_configurations
-    BenchmarkConfiguration.all
+    BenchmarkConfiguration.with_preloaded_environment_description
   end
 
   def all_configurations_options
     all_configurations.map { |c| [c.name, c.id] }
   end
+
 end