Skip to content

Commit

Permalink
Merge pull request #3958 from akash5100/bug_fix
Browse files Browse the repository at this point in the history
Admin Page Editor Link Fix
  • Loading branch information
bjester authored Feb 22, 2023
2 parents f979ba3 + 53459d1 commit 5b85ca8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,14 +146,11 @@
channel() {
return this.getChannel(this.channelId);
},
name() {
return this.channel.name;
},
searchChannelEditorsLink() {
return {
name: RouteNames.USERS,
query: {
keywords: `${this.name} ${this.channel.id}`,
keywords: `${this.channel.id}`,
},
};
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
return {
name: RouteNames.USERS,
query: {
keywords: `${this.channel.name} ${this.channelId}`,
keywords: `${this.channelId}`,
},
};
},
Expand Down

0 comments on commit 5b85ca8

Please sign in to comment.