1
0
Fork 0
mirror of synced 2024-07-01 04:21:06 +12:00

Remove log statements

This commit is contained in:
Andrew Kingston 2021-11-16 17:52:14 +00:00
parent 69422f374b
commit 9fea436cc2
2 changed files with 2 additions and 2 deletions

View file

@ -263,7 +263,6 @@
} else {
Object.keys(allSettings).forEach(key => {
if (!propsAreSame(allSettings[key], cachedSettings[key])) {
console.log("new '" + key + "' setting for '" + id + "'")
cachedSettings[key] = allSettings[key]
}
})

View file

@ -39,6 +39,8 @@
// Sorting can be overridden at run time, so we can't use the prop directly
let currentSortColumn = sortColumn
let currentSortOrder = sortOrder
// Reset the current sort state to props if props change
$: currentSortColumn = sortColumn
$: currentSortOrder = sortOrder
@ -172,7 +174,6 @@
const sort = schema?.[sortColumn] ? sortColumn : undefined
// For internal tables we use server-side processing
console.log("SEARCH!")
const res = await API.searchTable({
tableId: dataSource.tableId,
query,