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

Commit

Permalink
Merge pull request #1887 from OpenBazaar/fix-dispute-warning
Browse files Browse the repository at this point in the history
Fix dispute warning
  • Loading branch information
hoffmabc authored Apr 28, 2020
2 parents fef7fba + 983a914 commit e93c8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/views/modals/orderDetail/summaryTab/Summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ export default class extends BaseVw {

if (
(orderState !== 'DISPUTED' && !escrowTimeoutHours) ||
(this.model.contract.dispute !== '') ||
(this.model.contract.dispute !== undefined) ||
(orderState === 'DISPUTED' && !Date.parse(disputeStartTime))
) {
// contract probably forged
Expand Down

0 comments on commit e93c8d0

Please sign in to comment.