Merge branch 'main' into lower_limit
This commit is contained in:
commit
5a7edcbc16
2 changed files with 4 additions and 2 deletions
|
@ -23,7 +23,7 @@ class EmbeddingsDB {
|
|||
}
|
||||
|
||||
Future<void> clearTable() async {
|
||||
await _isar.clear();
|
||||
await _isar.writeTxn(() => _isar.clear());
|
||||
}
|
||||
|
||||
Future<List<Embedding>> getAll(Model model) async {
|
||||
|
|
|
@ -91,7 +91,9 @@ class _MemoriesWidgetState extends State<MemoriesWidget> {
|
|||
return SizedBox(
|
||||
height: _maxHeight,
|
||||
child: ListView.builder(
|
||||
physics: const BouncingScrollPhysics(),
|
||||
physics: const AlwaysScrollableScrollPhysics(
|
||||
parent: BouncingScrollPhysics(),
|
||||
),
|
||||
scrollDirection: Axis.horizontal,
|
||||
controller: _controller,
|
||||
itemCount: collatedMemories.length,
|
||||
|
|
Loading…
Add table
Reference in a new issue