Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-30 18:53:18 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-30 18:53:18 +0400
commitb742f47e89674c7aaae78b6e4174339480594d1f (patch)
tree78b365520da8e0b69067239fcfee6604233b60f9 /app/views/issues
parente2fb18a3ec8052997f0c9b795f76a6e4d57a9d97 (diff)
remove old alert messages
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_form.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml
index 16d1b163ee8..6d7613a700d 100644
--- a/app/views/issues/_form.html.haml
+++ b/app/views/issues/_form.html.haml
@@ -2,7 +2,7 @@
%h3.page_title= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.id}"
= form_for [@project, @issue] do |f|
-if @issue.errors.any?
- .alert-message.block-message.error
+ .alert.alert-error
- @issue.errors.full_messages.each do |msg|
%span= msg
%br