Skip to content

Commit ded772e

Browse files
authored
Merge pull request #500 from mapbox/fix/filter-user-by-uid
Filter user by uid, by default
2 parents 90a7529 + 020f03b commit ded772e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/changeset/user.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ class UserLink extends React.PureComponent {
3838
className="txt-underline-on-hover txt-bold pointer color-gray"
3939
to={{
4040
search: getObjAsQueryParam('filters', {
41-
users: [
41+
uids: [
4242
{
43-
label: this.props.userDetails.get('name'),
44-
value: this.props.userDetails.get('name')
43+
label: this.props.userDetails.get('uid'),
44+
value: this.props.userDetails.get('uid')
4545
}
4646
],
4747
harmful: [this.getHarmfulObject()],

0 commit comments

Comments
 (0)