Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit e93c8d0

Browse files
authored
Merge pull request #1887 from OpenBazaar/fix-dispute-warning
Fix dispute warning
2 parents fef7fba + 983a914 commit e93c8d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/views/modals/orderDetail/summaryTab/Summary.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ export default class extends BaseVw {
489489

490490
if (
491491
(orderState !== 'DISPUTED' && !escrowTimeoutHours) ||
492-
(this.model.contract.dispute !== '') ||
492+
(this.model.contract.dispute !== undefined) ||
493493
(orderState === 'DISPUTED' && !Date.parse(disputeStartTime))
494494
) {
495495
// contract probably forged

0 commit comments

Comments
 (0)