From 1d478ba5b949e53f76cafd4a29753df3a1144d1f Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Thu, 18 Jun 2020 11:03:20 -0700 Subject: [PATCH] Fix split by newlines --- app/views/conferences/_tickets.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/conferences/_tickets.haml b/app/views/conferences/_tickets.haml index 1463f20c..a028e8a0 100644 --- a/app/views/conferences/_tickets.haml +++ b/app/views/conferences/_tickets.haml @@ -20,7 +20,7 @@ %h3.text-center.word_break = ticket.title .word_break - = markdown(ticket.description.split('\n').first) + = markdown(ticket.description.split("\n").first) %button.btn-block.btn.btn-lg.btn-success %i.fa.fa-ticket.fa-fw{"aria-hidden": true} = humanized_money_with_symbol(ticket.price)