diff --git a/public/views/modals/txp-details.html b/public/views/modals/txp-details.html
index 4f9ad9c68..e1c4a831b 100644
--- a/public/views/modals/txp-details.html
+++ b/public/views/modals/txp-details.html
@@ -134,7 +134,7 @@
- * Only payment proposals created by yourself with no peer actions can be removed
+ * Payment proposals can be deleted: (1) after 24hr of been created or (2) by the creator as long as it has no other signatures.
diff --git a/src/js/controllers/index.js b/src/js/controllers/index.js
index 710cdb6d8..b4f1ee645 100644
--- a/src/js/controllers/index.js
+++ b/src/js/controllers/index.js
@@ -357,9 +357,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
tx.statusForUs = 'pending';
}
- if (tx.creatorId == self.copayerId && tx.actions.length == 1) {
- tx.couldRemove = true;
- };
+ tx.couldRemove =!tx.deleteLockTime;
if (tx.creatorId != self.copayerId) {
self.pendingTxProposalsCountForUs = self.pendingTxProposalsCountForUs + 1;