Skip to content

Commit

Permalink
fix overflow issue in WebPprofiler Forms panel
Browse files Browse the repository at this point in the history
  • Loading branch information
zolikonta authored Sep 29, 2022
1 parent 3461282 commit c173202
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Resources/views/Collector/form.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
cursor: pointer;
padding: 5px 7px 5px 22px;
position: relative;
overflow: hidden;
text-overflow: ellipsis;
}
.tree .toggle-button {
/* provide a bigger clickable area than just 10x10px */
Expand Down Expand Up @@ -449,7 +450,7 @@
{% import _self as tree %}
{% set has_error = data.errors is defined and data.errors|length > 0 %}
<li>
<div class="tree-inner" data-tab-target-id="{{ data.id }}-details">
<div class="tree-inner" data-tab-target-id="{{ data.id }}-details" title="{{ name|default('(no name)') }}">
{% if has_error %}
<div class="badge-error">{{ data.errors|length }}</div>
{% endif %}
Expand Down

0 comments on commit c173202

Please sign in to comment.