Skip to content

Commit

Permalink
chore: add lock side to lock title
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Dec 22, 2024
1 parent c77fe19 commit c69edd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ftbot/PairSummary.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const combinedPairList = computed(() => {
allLocks.sort((a, b) => (a.lock_end_timestamp > b.lock_end_timestamp ? -1 : 1));
if (allLocks.length > 0) {
[locks] = allLocks;
lockReason = `${timestampms(locks.lock_end_timestamp)} - ${locks.reason}`;
lockReason = `${timestampms(locks.lock_end_timestamp)} - ${locks.side} - ${locks.reason}`;
}
let profitString = '';
let profit = 0;
Expand Down

0 comments on commit c69edd4

Please sign in to comment.