Skip to content

Commit 85243ce

Browse files
committed
Fix severity table column spillover #982
Reference: #982 Signed-off-by: John M. Horan <[email protected]>
1 parent caf3354 commit 85243ce

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

vulnerabilities/templates/vulnerability_details.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -94,19 +94,19 @@
9494
<div class="tab-nested-div">
9595
<table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth gray-header-border">
9696
<tr>
97-
<th> System </th>
97+
<th style="width: 160px;"> System </th>
9898
<th> Score </th>
9999
<th> Found at </th>
100100
</tr>
101101
{% for severity in severities %}
102102
<tr>
103-
<td>{{ severity.scoring_system }}</td>
104-
<td>{{ severity.value }}</td>
103+
<td class="wrap-strings">{{ severity.scoring_system }}</td>
104+
<td class="wrap-strings">{{ severity.value }}</td>
105105
{% if severity.reference.url %}
106-
<td><a href="{{ severity.reference.url }}" target="_blank">
107-
{{ severity.reference.url }}<i class="fa fa-external-link fa_link_custom"></i></a></td>
106+
<td class="wrap-strings"><a href="{{ severity.reference.url }}" target="_blank">
107+
{{ severity.reference.url }}<i class="fa fa-external-link fa_link_custom"></i></a></td>
108108
{% else %}
109-
<td>{{ severity.reference.reference_id }}</td>
109+
<td class="wrap-strings">{{ severity.reference.reference_id }}</td>
110110
{% endif %}
111111
</tr>
112112
{% empty %}
@@ -239,8 +239,8 @@
239239
<table class="table is-bordered is-striped is-narrow is-hoverable is-fullwidth">
240240
<thead>
241241
<tr>
242-
<th><span
243-
class="has-tooltip-multiline has-tooltip-black has-tooltip-arrow has-tooltip-text-left"
242+
<th><span
243+
class="has-tooltip-multiline has-tooltip-black has-tooltip-arrow has-tooltip-text-left"
244244
data-tooltip="The package url or purl is a URL string used to identify and locate a software package.">
245245
Package URL</span>
246246
</th>

0 commit comments

Comments
 (0)