mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Fixes flow alerts table column width and description
This commit is contained in:
parent
4f0ac39efe
commit
39d3618351
8 changed files with 17 additions and 12 deletions
|
|
@ -49,13 +49,13 @@ end
|
|||
-- @return A human-readable string
|
||||
function alert_tls_certificate_selfsigned.format(ifid, alert, alert_type_params)
|
||||
if not alert_type_params then
|
||||
return i18n("flow_details.tls_certificate_selfsigned")
|
||||
return
|
||||
end
|
||||
|
||||
local crts = {}
|
||||
crts[#crts + 1] = alert_type_params["tls_crt.issuerDN"]
|
||||
|
||||
return string.format("%s [Issuer/Subject: %s]", i18n("flow_details.tls_certificate_selfsigned"), table.concat(crts, " - "))
|
||||
return string.format("[Issuer/Subject: %s]", table.concat(crts, " - "))
|
||||
end
|
||||
|
||||
-- #######################################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue