Fix DataTables warning message

Use `null` instead of an empty string to define columns initially empty

Fix #3471

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2025-05-19 19:46:05 -03:00
committed by GitHub
parent f683631afd
commit b8d04230cf

View File

@@ -249,8 +249,8 @@ $(() => {
},
},
{ data: "numQueries", width: "9%", render: $.fn.dataTable.render.text() },
{ data: "", width: "6%", orderable: false },
{ data: "", width: "6%", orderable: false },
{ data: null, width: "6%", orderable: false },
{ data: null, width: "6%", orderable: false },
{ data: "ips[].name", visible: false, class: "hide" },
],