-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reference address/change address context in utxo, allow TagsSec…
…tion to add/delete multiple correctly (#105) * feat: reference address/change address context in utxo, allow TagsSection to add/delete multiple correctly * feat: add transaction search see #59
- Loading branch information
Showing
30 changed files
with
561 additions
and
332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
apps/frontend/src/pages/Vault/RecentTransactions/NoFilteredTransactionsEmptyState.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import DeadFlowerImage from 'src/assets/dead-flower.svg'; | ||
|
||
const NoFilteredTransactionsEmptyState = () => ( | ||
<div className='my-16 h-96 w-full bg-white dark:bg-gray-800 space-y-6 flex flex-col items-center justify-center rounded-2xl shadow dark:highlight-white/10'> | ||
<h3 className='text-2xl text-gray-600 dark:text-gray-300 font-medium'>No Transactions</h3> | ||
<img className='text-gray-600 w-24 h-24' src={DeadFlowerImage} /> | ||
<p className='text-gray-600 dark:text-gray-400 font-sm font-medium'> | ||
No transactions match the search criteria. | ||
</p> | ||
</div> | ||
); | ||
|
||
export default NoFilteredTransactionsEmptyState; |
13 changes: 13 additions & 0 deletions
13
apps/frontend/src/pages/Vault/RecentTransactions/NoTransactionsEmptyState.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import DeadFlowerImage from 'src/assets/dead-flower.svg'; | ||
|
||
const NoTransactionsEmptyState = () => ( | ||
<div className='my-16 h-96 w-full bg-white dark:bg-gray-800 space-y-6 flex flex-col items-center justify-center rounded-2xl shadow dark:highlight-white/10'> | ||
<h3 className='text-2xl text-gray-600 dark:text-gray-300 font-medium'>No Transactions</h3> | ||
<img className='text-gray-600 w-24 h-24' src={DeadFlowerImage} /> | ||
<p className='text-gray-600 dark:text-gray-400 font-sm font-medium'> | ||
No activity has been detected on this account yet. | ||
</p> | ||
</div> | ||
); | ||
|
||
export default NoTransactionsEmptyState; |
Oops, something went wrong.