Skip to content

Commit

Permalink
Fix breakable links on server page too
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba committed Jul 9, 2023
1 parent 5233e8c commit 87136b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/server.haml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
%a{:href => @softwares[@details[:software]]}= @details[:software]
- else
= @details[:software]
- if @details[:website_url]
- if @details[:website_url] && @details[:website_url].length > 0
%tr
%td
Website
%td
%a{:href => @details[:website_url]}= @details[:website_url]
- if @details[:discord_url]
- if @details[:discord_url] && @details[:discord_url].length > 0
%tr
%td
Discord
Expand Down

0 comments on commit 87136b2

Please sign in to comment.