Modify ↓
Opened 19 years ago
Closed 19 years ago
#1983 closed defect (fixed)
strange rendering when <dd> element contents is empty
Reported by: | Owned by: | Christopher Lenz | |
---|---|---|---|
Priority: | low | Milestone: | 0.9 |
Component: | version control/changeset view | Version: | devel |
Severity: | trivial | Keywords: | layout |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
In changeset view, I encounted strange formatting when log message is single LF (1 line, not empty). In this case, the "<DT>Files:</DT>" will be overlayed onto element "<DT>Message:</DT>" It seems to be caused by empty <dd></dd>. I'm using firefox 1.0. I don't know why. But I have workaround by putting changeset.message if empty.
-
templates/changeset.cs
106 106 <dt class="author">Author:</dt> 107 107 <dd class="author"><?cs var:changeset.author ?></dd> 108 108 <dt class="message">Message:</dt> 109 <dd class="message" id="searchable"><?cs var:changeset.message ?></dd> 109 <dd class="message" id="searchable"><?cs 110 alt:changeset.message ?> <?cs /alt ?></dd> 110 111 <dt class="files">Files:</dt> 111 112 <dd class="files"> 112 113 <ul><?cs each:item = changeset.changes ?>
Attachments (0)
Change History (2)
comment:1 by , 19 years ago
Milestone: | → 0.9 |
---|---|
Owner: | changed from | to
Severity: | minor → trivial |
Status: | new → assigned |
comment:2 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Patch applied in [2407]. Thanks!
Note:
See TracTickets
for help on using tickets.
Will look into this.