From bcbe23ebbb3f5e4fc0c0ca25f1c0fd03567a3949 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Sat, 27 Aug 2011 10:08:24 +0000 Subject: [PATCH] 3963: Webreport, Individual's side, bug in event's note svn: r18078 --- src/plugins/webreport/NarrativeWeb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 61ae0f3bd..9168e5d2b 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -556,7 +556,7 @@ class BasePage(object): for notehandle in notelist: this_note = self.report.database.get_note_from_handle(notehandle) if this_note is not None: - ul.extend(Html("i", str(this_note.type))) + ul.extend(Html("i", str(this_note.type), class_="NoteType")) ul.extend(self.get_note_format(this_note, True)) # return note list to its callers