Skip to content

Commit d68cc5c

Browse files
committed
fix max limit
1 parent 5dcc9ab commit d68cc5c

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
## 16.3.0
44

5+
### Changes
6+
57
- New installed games section in the library
68
- Game time tracker
9+
- Fixed a bug where only the first 1000 Tags would be loaded in the library, now all tags are loaded
710

811
## 16.2.1
912

src/components/MultiSelectFilterDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export default function MultiSelectFilterDialog({
176176
try {
177177
const base = serverUrl.replace(/\/+$/, "");
178178
const params = new URLSearchParams();
179-
params.set("limit", "1000"); // Fetch all items
179+
params.set("limit", "-1");
180180
const url = `${base}${endpoint}?${params.toString()}`;
181181
const res = await authFetch(url, { method: "GET" });
182182
if (!res.ok) throw new Error(`Failed to fetch ${title} (${res.status})`);

0 commit comments

Comments
 (0)