From 0fa1922bb060bfa18cea32bfdf8db7e839e0470e Mon Sep 17 00:00:00 2001 From: takezoe Date: Sun, 2 Mar 2014 01:05:42 +0900 Subject: [PATCH] Small fix to pull request #289 --- src/main/twirl/header.scala.html | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/main/twirl/header.scala.html b/src/main/twirl/header.scala.html index 965fa9381..55f19eec9 100644 --- a/src/main/twirl/header.scala.html +++ b/src/main/twirl/header.scala.html @@ -29,13 +29,10 @@ } } - - - @if(repository.repository.description != "") { -

@repository.repository.description

- } - +@repository.repository.description.map { description => +

@description

+}