10854-Break word SNMP Console trap

This commit is contained in:
Pablo Aragon 2023-04-10 10:26:15 +02:00
parent b4d3d0aa34
commit 8dfb01c7da
2 changed files with 5 additions and 1 deletions

View File

@ -1443,7 +1443,7 @@ class SnmpConsole extends HTML
binding_vars.forEach(function(oid) {
string += oid+'<br/>';
});
variableBindings = `<td align="left" colspan="8">${string}</td>`;
variableBindings = `<td align="left" colspan="8" class="break-word w200px">${string}</td>`;
}
tr.after(`<tr id="show_" role="row">${labelBindings}${variableBindings}</tr>`);

View File

@ -11895,3 +11895,7 @@ td[id^="table_info_box"] a {
.info_table.events > tbody > tr > td {
border-bottom: 1px solid #dedede !important;
}
.break-word {
word-wrap: break-word;
}