Frontmatter
| id | 8548 |
| title | Refactor PageContainer for Tickets View |
| state | Closed |
| labels | airefactoring |
| assignees | tobiu |
| createdAt | Jan 11, 2026, 4:15 PM |
| updatedAt | Jan 11, 2026, 4:21 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8548 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8398 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 11, 2026, 4:21 PM |
Refactor PageContainer for Tickets View
tobiu assigned to @tobiu on Jan 11, 2026, 4:21 PM

tobiu
Jan 11, 2026, 4:21 PM
Input from Gemini 3 Pro:
✦ Refactoring complete.
- Created
apps/portal/view/news/tickets/PageContainer.mjsextendingPortal.view.shared.content.PageContainer.- Moved
layout: nullandstyleconfigurations to the new subclass.- Reverted
apps/portal/view/shared/content/PageContainer.mjsto its default state.- Updated
apps/portal/view/shared/content/Container.mjsto support a configurablepageContainerModule.- Updated
apps/portal/view/news/tickets/MainContainer.mjsto use the newTicketPageContainer.This isolates the layout changes to the tickets view, preventing regressions in other views like the release view.
tobiu added parent issue #8398 on Jan 11, 2026, 4:21 PM
tobiu closed this issue on Jan 11, 2026, 4:21 PM
To address architectural debt and prevent layout regressions in other views, refactor
apps/portal/view/shared/content/PageContainer.mjs.Changes:
apps/portal/view/news/tickets/PageContainer.mjsextending the shared PageContainer.layout: nullandstyle: {flex: 1, overflowY: 'auto', position: 'relative'}to the new subclass.apps/portal/view/shared/content/PageContainer.mjsto its default state.apps/portal/view/shared/content/Container.mjsto make thePageContainermodule configurable.apps/portal/view/news/tickets/MainContainer.mjsto use the new subclass.