Skip to content

Commit

Permalink
Fix CF
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperJMN committed May 27, 2024
1 parent 87c9b46 commit 1f7645e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private TransactionHistoryItemViewModel(IWalletModel wallet, TransactionModel tr
CancelTransactionCommand = ReactiveCommand.Create(() => OnCancelTransaction(transaction), Observable.Return(transaction.CanCancelTransaction));
}

public bool TransactionOperationsVisible => Transaction.CanCancelTransaction || Transaction.CanSpeedUpTransaction && !IsChild;
public bool TransactionOperationsVisible => (Transaction.CanCancelTransaction || Transaction.CanSpeedUpTransaction) && !IsChild;

private void OnSpeedUpTransaction(TransactionModel transaction)
{
Expand Down

0 comments on commit 1f7645e

Please sign in to comment.