@lavalogic/scoria 0.0.33 → 0.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -542,7 +542,7 @@ export class TableContext {
|
|
|
542
542
|
}) ?? []);
|
|
543
543
|
return data;
|
|
544
544
|
}
|
|
545
|
-
return this.dataRepo?.data ?? [];
|
|
545
|
+
return this.showSelectedOnly ? [...this.selectedItems.values()] : (this.dataRepo?.data ?? []);
|
|
546
546
|
});
|
|
547
547
|
sortedData = $derived.by(() => {
|
|
548
548
|
if (this.paginationRepo?.paginationType == PaginationType.Local) {
|