mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
Fixes hook label not correctly displayed
This commit is contained in:
parent
bfeb1f3563
commit
e1e3b540ef
1 changed files with 1 additions and 1 deletions
|
|
@ -711,7 +711,7 @@ const render_template = () => {
|
|||
// append label and checkbox inside the row
|
||||
$input_container.append(
|
||||
$(`<td class='text-center align-middle'></td>`).append($checkbox),
|
||||
$(`<td class='align-middle'>${(hook.label ? hook.label.titleCase() : "")}</td>`),
|
||||
$(`<td class='align-middle'>${hook.label ? hook.label.titleCase() : ""}</td>`),
|
||||
$(`<td></td>`).append($field)
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue