Skip to content

Commit

Permalink
Merge pull request #2729 from mitre/bug-2717
Browse files Browse the repository at this point in the history
bug
  • Loading branch information
elegantmoose authored Feb 17, 2023
2 parents eedfd44 + f8796c3 commit 0ee8762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/operations.html
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ <h2>Operations</h2>
if (!currentLink) return false;
// Link can only be editable if operation is running, and if link is paused, queued, or completed
return this.isOperationRunning && ((currentLink.status === -1 || !(currentLink.status in this.LINK_STATUSES))
&& !(currentLink.finish.length > 0 || currentLink.output === 'True'));
&& !(currentLink.finish !== null || currentLink.output === 'True'));
},

getReadableTime(date) {
Expand Down

0 comments on commit 0ee8762

Please sign in to comment.