- Replace deprecated methods on client - Fix broken dropdowns due to select kit 2 upgrade - Graceful error handling when Stripe keys are not configured but plugin enabled
8 lines
201 B
JavaScript
8 lines
201 B
JavaScript
import Helper from "@ember/component/helper";
|
|
|
|
export default Helper.helper(function(params) {
|
|
const payment = params[0];
|
|
|
|
return `<a href=\"${payment.url}\">${payment.payment_intent_id}</a>`;
|
|
});
|