Skip to content

Commit

Permalink
Fixed dates in lists of deals
Browse files Browse the repository at this point in the history
  • Loading branch information
simba77 committed Dec 4, 2023
1 parent c486272 commit 263eb60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/components/Account/AssetsTableRowComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function showSellModal(item: Deal) {

<template>
<tr>
<td v-tooltip="{html: true, content: 'Created At: ' + item.createdAt + '<br>Updated At: ' + item.createdAt}">
<td v-tooltip="{html: true, content: 'Created: ' + item.createdAt + '<br>Updated: ' + item.updatedAt}">
<div class="font-extrabold">
<lock-closed-icon
v-if="item.isBlocked"
Expand Down
2 changes: 1 addition & 1 deletion assets/components/Analytics/ClosedDealsItemComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defineProps<{

<template>
<tr>
<td v-tooltip="{html: true, content: 'Created At: ' + item.createdAt + '<br>Updated At: ' + item.createdAt}">
<td v-tooltip="{html: true, content: 'Buy: ' + item.createdAt + '<br>Sell: ' + item.updatedAt}">
<div class="font-extrabold">
<lock-closed-icon
v-if="item.isBlocked"
Expand Down

0 comments on commit 263eb60

Please sign in to comment.