diff --git a/lib/ex_finance_web/live/public/cedears/cedears_live/index.html.heex b/lib/ex_finance_web/live/public/cedears/cedears_live/index.html.heex
index ce0f730..1293d04 100644
--- a/lib/ex_finance_web/live/public/cedears/cedears_live/index.html.heex
+++ b/lib/ex_finance_web/live/public/cedears/cedears_live/index.html.heex
@@ -16,7 +16,7 @@
viewBox="0 0 20 20"
fill="none"
aria-hidden="true"
- class="h-6 w-6 stroke-current"
+ class="h-7 w-7 stroke-current"
>
-
+
<%= gettext("Find cedears...") %>
@@ -37,7 +37,7 @@
class="hidden fixed inset-0 z-50"
role="dialog"
aria-modal="true"
- phx-window-keydown={hide_modal()}
+ phx-window-keyup={hide_modal()}
phx-key="escape"
>
@@ -80,7 +80,19 @@
+
+
+ ESC
+
- <%= cedear.name %>
+ <%= cedear.symbol %> - <%= cedear.name %>
<% end %>
diff --git a/lib/ex_finance_web/live/public/cedears/cedears_live/show.ex b/lib/ex_finance_web/live/public/cedears/cedears_live/show.ex
index b966b45..6ab99ee 100644
--- a/lib/ex_finance_web/live/public/cedears/cedears_live/show.ex
+++ b/lib/ex_finance_web/live/public/cedears/cedears_live/show.ex
@@ -34,7 +34,7 @@ defmodule ExFinanceWeb.Public.CedearsLive.Show do
{:noreply,
socket
|> assign(:page_title, cedear.name)
- |> assign(:section_title, "Cotizaciones de #{cedear.name}")
+ |> assign(:section_title, "CotizaciĆ³n de #{cedear.name}")
|> assign_cedear(cedear)}
end
diff --git a/lib/ex_finance_web/live/public/cedears/cedears_live/show.html.heex b/lib/ex_finance_web/live/public/cedears/cedears_live/show.html.heex
index e21ead8..d974022 100644
--- a/lib/ex_finance_web/live/public/cedears/cedears_live/show.html.heex
+++ b/lib/ex_finance_web/live/public/cedears/cedears_live/show.html.heex
@@ -9,7 +9,7 @@
>
- <%= @cedear.name %>
+ <%= @cedear.symbol %> (<%= @cedear.name %>)
-
@@ -68,7 +68,6 @@
field={@form[:stock_price]}
class="focus:ring-indigo-500 hover:ring-indigo-500 bg-gray-100 mt-0"
min={0}
- label={gettext("Stock price")}
required
step="0.01"
type="hidden"