Skip to content

Commit

Permalink
Comment out non-functional parts until further inputs.
Browse files Browse the repository at this point in the history
  • Loading branch information
DemogorGod committed Jun 19, 2023
1 parent 3af3823 commit 7417613
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions apps/web/src/pages/overview/components/BreakdownTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const filterData = () => {
filteredDataArray = tableMockedItems.value[tableView.value]
} else {
const searchTerm = searchInput.value
let filteredDataArray = tableMockedItems.value[tableView.value].filter(item => {
filteredDataArray = tableMockedItems.value[tableView.value].filter(item => {
return (
// Might need to modify to match types each variable
item.wallet_provider?.toLowerCase().includes(searchTerm) ||
Expand Down Expand Up @@ -326,26 +326,26 @@ const exportFile = () => {
v-if="header.value === 'wallet_provider'"
class="flex items-center"
>
<button class="checkbox_button mr-[12px]">
<!-- <button class="checkbox_button mr-[12px]">
<vue-feather
type="minus"
size="20"
class="icon w-[14px] h-min"
/>
</button>
</button> -->
Wallet Provider
</div>
<div
v-else-if="header.value === 'tx_hash'"
class="flex items-center"
>
<button class="checkbox_button mr-[12px]">
<!-- <button class="checkbox_button mr-[12px]">
<vue-feather
type="minus"
size="20"
class="icon w-[14px] h-min"
/>
</button>
</button> -->
Tx Hash
</div>
<div v-else>
Expand Down Expand Up @@ -390,13 +390,13 @@ const exportFile = () => {
v-if="header.value === 'wallet_provider'"
class="flex items-center gap-[12px]"
>
<button class="checkbox_button">
<!-- <button class="checkbox_button">
<vue-feather
type="check"
size="20"
class="icon w-[14px] h-min"
/>
</button>
</button> -->
<img
:src="`/${item[header.value]}.svg`"
alt="Avatar "
Expand All @@ -418,13 +418,13 @@ const exportFile = () => {
v-else-if="header.value === 'tx_hash'"
class="flex items-center gap-[12px]"
>
<button class="checkbox_button mr-[12px]">
<!-- <button class="checkbox_button mr-[12px]">
<vue-feather
type="check"
size="20"
class="icon w-[14px] h-min"
/>
</button>
</button> -->
<a class="w-[55px] truncate underline">
{{ convertString(item[header.value]) }}
</a>
Expand Down

0 comments on commit 7417613

Please sign in to comment.