Skip to content

Commit

Permalink
Bug 1438718 - Fix Ctrl+click doesn't unpin already selected jobs (#3248)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Dawson committed Feb 21, 2018
1 parent a11e492 commit 1aad641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/job-view/PushJobs.jsx
Expand Up @@ -111,7 +111,7 @@ export default class PushJobs extends React.Component {
if (ev.button === 1) { // Middle click
this.handleLogViewerClick(jobId);
} else if (ev.metaKey || ev.ctrlKey) { // Pin job
this.$rootScope.$emit(this.thEvents.jobPin, job);
this.$rootScope.$emit(this.thEvents.toggleJobPin, job);
} else if (job.state === 'runnable') { // Toggle runnable
this.handleRunnableClick(job);
} else {
Expand Down

0 comments on commit 1aad641

Please sign in to comment.