Skip to content

Commit

Permalink
Break URLs on the home page that are too long
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvollebregt committed Nov 29, 2018
1 parent 337a00a commit 06b4f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/index.html
Expand Up @@ -106,7 +106,7 @@ <h2 class="mt-4">Top 10 Domains Using This By Views</h2>
<tbody>
{% for site in top_sites['domains'] %}
<tr>
<td><a href="//{{ site }}">{{ site }}</a></td>
<td style="word-break: break-all;"><a href="//{{ site }}">{{ site }}</a></td>
<td>{{ top_sites['values'][site] }}</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 06b4f34

Please sign in to comment.