Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" betwee

- If captured_body_length is set to 0 (default value), show a special message rather than the
generic message `This message has no captured body`.
- Fixed: Add slash in profiler if there is none between host and path

# 1.27.0 - 2022-07-25

Expand Down
2 changes: 1 addition & 1 deletion src/Resources/views/stack.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
{% if stack.requestPort not in [null, 80, 443] %}
<span class="httplug-port">:{{ stack.requestPort }}</span>
{% endif %}
<span class="httplug-target">{{ stack.requestTarget }}</span>
<span class="httplug-target">{{ (stack.requestTarget|default('/') starts with '/' ? '' : '/') ~ stack.requestTarget }}</span>
</div>
{% endapply %}
<div>
Expand Down