Commit ad56ecfc by Will Daly Committed by Zia Fazal

Fix for ECOM-876

parent ddc87842
...@@ -55,7 +55,7 @@ var edx = edx || {}; ...@@ -55,7 +55,7 @@ var edx = edx || {};
minPrice: el.data('course-mode-min-price'), minPrice: el.data('course-mode-min-price'),
contributionAmount: el.data('contribution-amount'), contributionAmount: el.data('contribution-amount'),
suggestedPrices: _.filter( suggestedPrices: _.filter(
(el.data('course-mode-suggested-prices') || "").split(","), (el.data('course-mode-suggested-prices').toString()).split(","),
function( price ) { return Boolean( price ); } function( price ) { return Boolean( price ); }
), ),
currency: el.data('course-mode-currency'), currency: el.data('course-mode-currency'),
......
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