Skip to content

Commit

Permalink
Merge pull request #1680 from symbol/regression-bugfixes
Browse files Browse the repository at this point in the history
regression bug fixing
  • Loading branch information
bassemmagdy authored Aug 31, 2021
2 parents 3f5703e + 92797a7 commit dfa845d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ export class TransactionRowTs extends Vue {
}

public get date(): string {
if (this.transaction instanceof AggregateTransaction) {
if (this.transaction.type === TransactionType.AGGREGATE_BONDED) {
return TimeHelpers.getTransactionDate(this.transaction.deadline, 48, this.networkConfiguration.epochAdjustment);
} else if (this.transaction.type === TransactionType.HASH_LOCK) {
return TimeHelpers.getTransactionDate(this.transaction.deadline, 6, this.networkConfiguration.epochAdjustment);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,7 @@ export class FormTransferTransactionTs extends FormTransactionBase {
@Watch('selectedSigner')
onSelectedSignerChange() {
this.formItems.signerAddress = this.selectedSigner.address.plain();
this.resetForm();
}

/**
Expand Down

0 comments on commit dfa845d

Please sign in to comment.