Remove log statements
This commit is contained in:
parent
76579e5968
commit
9420ee2b5e
|
@ -263,7 +263,6 @@
|
||||||
} else {
|
} else {
|
||||||
Object.keys(allSettings).forEach(key => {
|
Object.keys(allSettings).forEach(key => {
|
||||||
if (!propsAreSame(allSettings[key], cachedSettings[key])) {
|
if (!propsAreSame(allSettings[key], cachedSettings[key])) {
|
||||||
console.log("new '" + key + "' setting for '" + id + "'")
|
|
||||||
cachedSettings[key] = allSettings[key]
|
cachedSettings[key] = allSettings[key]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -39,6 +39,8 @@
|
||||||
// Sorting can be overridden at run time, so we can't use the prop directly
|
// Sorting can be overridden at run time, so we can't use the prop directly
|
||||||
let currentSortColumn = sortColumn
|
let currentSortColumn = sortColumn
|
||||||
let currentSortOrder = sortOrder
|
let currentSortOrder = sortOrder
|
||||||
|
|
||||||
|
// Reset the current sort state to props if props change
|
||||||
$: currentSortColumn = sortColumn
|
$: currentSortColumn = sortColumn
|
||||||
$: currentSortOrder = sortOrder
|
$: currentSortOrder = sortOrder
|
||||||
|
|
||||||
|
@ -172,7 +174,6 @@
|
||||||
const sort = schema?.[sortColumn] ? sortColumn : undefined
|
const sort = schema?.[sortColumn] ? sortColumn : undefined
|
||||||
|
|
||||||
// For internal tables we use server-side processing
|
// For internal tables we use server-side processing
|
||||||
console.log("SEARCH!")
|
|
||||||
const res = await API.searchTable({
|
const res = await API.searchTable({
|
||||||
tableId: dataSource.tableId,
|
tableId: dataSource.tableId,
|
||||||
query,
|
query,
|
||||||
|
|
Loading…
Reference in New Issue