From cf6aa0a6c8852424e39e4785a1bd783ab475376b Mon Sep 17 00:00:00 2001
From: elijah <elijah@riseup.net>
Date: Thu, 8 May 2014 15:12:15 -0700
Subject: [PATCH] minor fix to default pricing chart

---
 app/views/pages/pricing.html.haml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/views/pages/pricing.html.haml b/app/views/pages/pricing.html.haml
index ce4b379f..e339d275 100644
--- a/app/views/pages/pricing.html.haml
+++ b/app/views/pages/pricing.html.haml
@@ -16,6 +16,6 @@
           - if level[:rate].nil? || level[:rate] == 0
             = t(:free)
           - else
-            = level[:rate].join(', ')
+            = level[:rate].collect{|currency, price| "#{currency} #{price}"}.join(', ')
 - else
   No service levels are configured.
-- 
GitLab