Use author filter parameter instead of q with gambit to get a user's discussions on the DiscussionsUserPage (#3068)

This commit is contained in:
Rafael Horvat 2021-09-11 10:24:15 +02:00 committed by GitHub
parent f56fc11af9
commit 1b193196da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ export default class DiscussionsUserPage extends UserPage {
super.show(user);
this.state = new DiscussionListState({
q: 'author:' + user.username(),
filter: { author: user.username() },
sort: 'newest',
});