Skip to content

Commit

Permalink
fix(ui): don't show update icon if last run was from CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
jakowenko committed Oct 13, 2021
1 parent 2a29fab commit 8d258ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/src/components/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ export default {
? run.event === 'release' && run.status === 'completed' && run.conclusion === 'success'
: run.head_branch === currentBuild.head_branch &&
run.status === 'completed' &&
run.conclusion === 'success',
run.conclusion === 'success' &&
run.name !== 'CodeQL',
);
if (currentBuild.id < lastBuild.id) this.updateAvailable = true;
}
Expand Down

0 comments on commit 8d258ea

Please sign in to comment.