From fe4929548f897815a53b38684ce322694cef0673 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sun, 24 Sep 2017 20:15:15 -0400 Subject: Added space to empty box slots --- app/views/pokeviewer/pokemon/index.html.haml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/views') diff --git a/app/views/pokeviewer/pokemon/index.html.haml b/app/views/pokeviewer/pokemon/index.html.haml index e536080..436f48a 100644 --- a/app/views/pokeviewer/pokemon/index.html.haml +++ b/app/views/pokeviewer/pokemon/index.html.haml @@ -18,7 +18,9 @@ %tr - row.each do |p| %td.pc-pokemon - - unless p.nil? + - if p.nil? + .spacer + - else = link_to image_tag(p.icon_path), p .pc-data .pc-data-name= p.revisions.last.nickname -- cgit 1.4.1