Skip to content

Commit

Permalink
remove erreoneous = on end tags in eex files (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eein authored Apr 22, 2021
1 parent 0be1dbc commit 1f6d25a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/glimesh_web/live/homepage_live.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<p class="mb-0 card-stream-username"><%= channel.user.displayname %> <span class="badge badge-info"><%= Glimesh.Streams.get_channel_language(channel) %></span>
<%= if channel.mature_content do %>
<span class="badge badge-warning ml-1"><%= gettext("Mature") %></span>
<%= end %>
<% end %>
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/glimesh_web/live/streams_live/following.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<p class="mb-0 card-stream-username"><%= channel.user.displayname %> <span class="badge badge-info"><%= Glimesh.Streams.get_channel_language(channel) %></span>
<%= if channel.mature_content do %>
<span class="badge badge-warning"><%= gettext("Mature") %> </span>
<%= end %>
<% end %>
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/glimesh_web/live/streams_live/list.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<p class="mb-0 card-stream-username"><%= channel.user.displayname %> <span class="badge badge-info"><%= Glimesh.Streams.get_channel_language(channel) %></span>
<%= if channel.mature_content do %>
<span class="badge badge-warning ml-1"><%= gettext("Mature") %></span>
<%= end %>
<% end %>
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion lib/glimesh_web/live/user_live/stream.html.leex
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<span class="badge badge-pill badge-info ml-2"><%= Glimesh.Streams.get_channel_language(@channel) %></span>
<%= if @channel.mature_content do %>
<span class="badge badge-pill badge-warning ml-2"><%= gettext("Mature") %></span>
<%= end %>
<% end %>

<%= live_render(@socket, GlimeshWeb.UserLive.Components.SocialButtons, id: "social-buttons", container: {:ul, class: "list-inline ml-2 mb-0"}, session: %{"user_id" => @streamer.id}) %>
</div>
Expand Down

0 comments on commit 1f6d25a

Please sign in to comment.