We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa443e4 commit 8b53de2Copy full SHA for 8b53de2
1 file changed
examples/lit/sorting/src/main.ts
@@ -79,14 +79,15 @@ class LitTableExample extends LitElement {
79
80
private tableController = new TableController<Person>(this)
81
82
- protected render(): unknown {
+ protected render() {
83
const table = this.tableController.getTable({
84
columns,
85
data,
86
state: {
87
sorting: this._sorting,
88
},
89
onSortingChange: updaterOrValue => {
90
+ console.log('sort change')
91
if (typeof updaterOrValue === 'function') {
92
this._sorting = updaterOrValue(this._sorting)
93
} else {
0 commit comments