Skip to content

Commit

Permalink
Merge pull request #322 from VinceMacBuche/bug_3904/group_notificatio…
Browse files Browse the repository at this point in the history
…n_2.4

Fixes #3904 : fixes notifications on group page
  • Loading branch information
ncharles committed Sep 25, 2013
2 parents d1342b3 + cf70569 commit 04bb105
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ class NodeGroupForm(
if(notifications.isEmpty) NodeSeq.Empty
else {
val html =
<div id="notifications" class="notify">
<div id="errorNotification" class="notify">
<ul class="field_errors">{notifications.map( n => <li>{n}</li>) }</ul>
</div>
notifications = Nil
Expand Down Expand Up @@ -695,8 +695,8 @@ class NodeGroupForm(
NodeSeq.Empty
}
else {
val html =
<div id="notifications" class="notify">
val html =
<div id="errorNotification" class="notify">
<ul class="field_errors">{notifications.map( n => <li>{n}</li>) }</ul>
</div>
html
Expand Down

0 comments on commit 04bb105

Please sign in to comment.