Skip to content

Commit

Permalink
Remove more unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sopa301 committed Jan 28, 2024
1 parent 5a054b5 commit 5ee7df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/c-authorship.vue
Original file line number Diff line number Diff line change
Expand Up @@ -526,8 +526,8 @@ export default defineComponent({
lines.forEach((line, lineCount) => {
const isAuthorMatched = this.info.isMergeGroup
? !this.isUnknownAuthor(line.author.gitId)
: line.author.gitId === this.info.author;
? !this.isUnknownAuthor(line.author.gitId)
: line.author.gitId === this.info.author;
const knownAuthor = (line.author && isAuthorMatched) ? line.author.gitId : null;
if (knownAuthor !== lastState || lastId === -1) {
Expand Down

0 comments on commit 5ee7df4

Please sign in to comment.