File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ export class DataTable extends MosaicClient {
106106 /** @type {AsyncBatchReader<flech.StructRowProxy> | null } */
107107 #reader: AsyncBatchReader < TableRow > | null = null ;
108108
109- #sql = signal ( undefined as string | undefined ) ;
109+ /** The active SQL query */
110+ #sql: signals . Signal < string | undefined > = signal ( ) ;
110111
111112 constructor ( source : DataTableOptions ) {
112113 super ( Selection . crossfilter ( ) ) ;
@@ -371,11 +372,11 @@ export class DataTable extends MosaicClient {
371372 }
372373}
373374
374- const TRUNCATE = /** @type { const } */ ( {
375+ const TRUNCATE = {
375376 whiteSpace : "nowrap" ,
376377 overflow : "hidden" ,
377378 textOverflow : "ellipsis" ,
378- } ) ;
379+ } as const ;
379380
380381function thcol (
381382 field : flech . Field ,
You can’t perform that action at this time.
0 commit comments