@@ -275,7 +282,7 @@
-
\ No newline at end of file
+
diff --git a/src/utils/table/TableController.ts b/src/utils/table/TableController.ts
index 908e3b7c1..6dba10e54 100644
--- a/src/utils/table/TableController.ts
+++ b/src/utils/table/TableController.ts
@@ -132,6 +132,15 @@ export abstract class TableController
implements PlayPauseController {
}
}
+ public readonly onKeyChange = (key: K): void => {
+ if (this.mountedRef.value) {
+ if (this.autoRefresh.value) {
+ this.stopAutoRefresh(1)
+ }
+ this.moveBufferToPage(1, key).catch(this.errorHandler)
+ }
+ }
+
//
// Public (to be subclassed)
//