Skip to content

Commit

Permalink
Fix personal access token search (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
glucaci committed Mar 11, 2022
1 parent 9b0aa3f commit 61633bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default {
if (this.searchText) {
const regex = new RegExp(`.*${this.searchText}.*`, "i");
personalAccessTokens = personalAccessTokens.filter(
x => regex.test(x.name) || regex.test(x.personalAccessTokenId)
x => regex.test(x.userName) || regex.test(x.id)
);
}
Expand Down

0 comments on commit 61633bc

Please sign in to comment.