Modify ↓
#11423 closed defect (fixed)
The components are duplicated in admin page
Reported by: | Tetsuya Morimoto | Owned by: | Ryan J Ollos |
---|---|---|---|
Priority: | normal | Component: | DefaultCcPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 1.0 |
Description
The components are duplicated on Components page in admin panel when DefaultCCAdmin is enabled.
My environment are:
- DefaultCc-0.3dev_r13333
- Trac-1.0.2dev_r12281
It seems that the save process is fine, this bug is only for display in admin page.
141 filter = filter.append(tag.tr(tag.td(tag.input(type='checkbox', name='sel', value=comp.name), class_='sel'), 142 tag.td(tag.a(comp.name, href=req.href.admin('ticket', 'components') + '/' + comp.name), class_='name'), 143 tag.td(comp.owner, class_='owner'), 144 tag.td(default_tag, class_='default'), 145 tag.td(default_cc, class_='defaultcc')))
Attachments (1)
Change History (6)
Changed 11 years ago by
Attachment: | defaultcc_admin_components1.png added |
---|
comment:2 Changed 11 years ago by
It appears this might somehow be due to [trac 11919]. Previously, it seems that exhausting the iterator would cause the table to not be rendered, therefore the original author recreated the entire table in Genshi. After 1.0.2dev-r11919
, the original table and recreated table are rendered.
comment:4 Changed 11 years ago by
I fixed some other issues in [13446:13449]. Please let me know if you spot any problems.
comment:5 Changed 11 years ago by
I updated from trunk and confirmed it works well. Thank you for quick response!
Note: See
TracTickets for help on using
tickets.