Table fix

This commit is contained in:
Matteo Gheza 2021-05-04 17:14:05 +02:00
parent 28c591ee0b
commit 51a773ed41
1 changed files with 4 additions and 2 deletions

View File

@ -170,8 +170,10 @@ export async function loadTable ({ tablePage, setTableRefreshInterval = true, in
if (typeof fillTable === "undefined") {
if (useCustomTableEngine !== false) {
tableEngine = useCustomTableEngine;
} else if ("connection" in navigator && navigator.connection.saveData) {
tableEngine = "default";
/*} else if ("connection" in navigator && navigator.connection.saveData) {
tableEngine = "default";*/
} else {
tableEngine = "datatables";
}
fillTableLoaded = await import(`./table_engine_${tableEngine}.js`)
.then(({ default: _ }) => {