Skip to content

Commit e592df2

Browse files
committed
Fix indentation in template
1 parent 829cf38 commit e592df2

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

lib/elixir_console_web/live/console_live/history_component.html.heex

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@
33
<p>Elixir <%= System.version() %>/OTP <%= System.otp_release() %></p>
44
</div>
55
<%= for output <- @output do %>
6-
<div id={"command#{output.id}"} class="text-gray-300 font-medium"><%= print_prompt() %><%= format_command(output.command) %></div>
6+
<div id={"command#{output.id}"} class="text-gray-300 font-medium">
7+
<%= print_prompt() %><%= format_command(output.command) %>
8+
</div>
79
<div id={"output#{output.id}"} class="text-teal-300">
810
<%= output.result %>
9-
<%= if output.error do %><span class="text-pink-400"><%= output.error %></span><% end %>
11+
<%= if output.error do %>
12+
<span class="text-pink-400">
13+
<%= output.error %>
14+
</span>
15+
<% end %>
1016
</div>
1117
<% end %>
1218
</div>

0 commit comments

Comments
 (0)