diff --git a/templates/operations.html b/templates/operations.html
index 697b7119e..790eb2922 100644
--- a/templates/operations.html
+++ b/templates/operations.html
@@ -1334,7 +1334,7 @@
Operations
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) {