DEV: Bump thread page size to 100 (#21691)

We don't have proper pagination yet so this
should help us in the interim.
This commit is contained in:
Martin Brennan 2023-05-23 10:43:39 +02:00 committed by GitHub
parent b8bd3b07ef
commit dad6b61807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ import { next, schedule } from "@ember/runloop";
import discourseLater from "discourse-common/lib/later";
import { resetIdle } from "discourse/lib/desktop-notifications";
const PAGE_SIZE = 50;
const PAGE_SIZE = 100;
export default class ChatThreadPanel extends Component {
@service siteSettings;