You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the $_SERVER variable contains many entries, the "SERVER" section on the run view page becomes very large. This makes it difficult to navigate through the page, especially when debugging other parts of the application.
Proposed Solution
Wrap the "SERVER" section in a collapsible <details> HTML element. This reduces clutter and allows users to expand the section only when needed.
Here's the updated code for templates/runs/view.twig:
Tested locally, and the proposed change works as intended.
The added inline styles are a temporary solution. Ideally, these styles should be moved into the main stylesheet, which ensures a consistent and maintainable styling approach across the project.
The text was updated successfully, but these errors were encountered:
Problem
When the
$_SERVER
variable contains many entries, the "SERVER" section on the run view page becomes very large. This makes it difficult to navigate through the page, especially when debugging other parts of the application.Proposed Solution
Wrap the "SERVER" section in a collapsible
<details>
HTML element. This reduces clutter and allows users to expand the section only when needed.Here's the updated code for
templates/runs/view.twig
:Benefits
Additional Context
Tested locally, and the proposed change works as intended.
The added inline styles are a temporary solution. Ideally, these styles should be moved into the main stylesheet, which ensures a consistent and maintainable styling approach across the project.
The text was updated successfully, but these errors were encountered: