Commit 47f02ec4 by Will Daly

Merge pull request #6483 from edx/hotfix/ecom-876

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