0
0
Fork 0

Fix long domain block descriptions breaking table layout (#12029)

This commit is contained in:
Eugen Rochko 2019-10-01 04:54:29 +02:00 committed by GitHub
parent 6faa98aee2
commit c35376132b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 7 deletions

View file

@ -6,5 +6,7 @@
%tbody
- domain_blocks.each do |domain_block|
%tr
%td.nowrap= domain_block.domain
%td= domain_block.public_comment if display_blocks_rationale?
%td.nowrap
%span{ title: domain_block.domain }= domain_block.domain
%td
= domain_block.public_comment if display_blocks_rationale?