diff options
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/pokeviewer/pokemon/index.html.haml | 4 |
1 files changed, 3 insertions, 1 deletions
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 @@ | |||
18 | %tr | 18 | %tr |
19 | - row.each do |p| | 19 | - row.each do |p| |
20 | %td.pc-pokemon | 20 | %td.pc-pokemon |
21 | - unless p.nil? | 21 | - if p.nil? |
22 | .spacer | ||
23 | - else | ||
22 | = link_to image_tag(p.icon_path), p | 24 | = link_to image_tag(p.icon_path), p |
23 | .pc-data | 25 | .pc-data |
24 | .pc-data-name= p.revisions.last.nickname | 26 | .pc-data-name= p.revisions.last.nickname |