Skip to content

Commit 8b53de2

Browse files
author
Mor Kadosh
committed
chore: removed "unknown" type
1 parent fa443e4 commit 8b53de2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/lit/sorting/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,15 @@ class LitTableExample extends LitElement {
7979

8080
private tableController = new TableController<Person>(this)
8181

82-
protected render(): unknown {
82+
protected render() {
8383
const table = this.tableController.getTable({
8484
columns,
8585
data,
8686
state: {
8787
sorting: this._sorting,
8888
},
8989
onSortingChange: updaterOrValue => {
90+
console.log('sort change')
9091
if (typeof updaterOrValue === 'function') {
9192
this._sorting = updaterOrValue(this._sorting)
9293
} else {

0 commit comments

Comments
 (0)