-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add order label to the historical transaction list (#99)
* feat: add order label to the historical transaction table
- Loading branch information
1 parent
6a861af
commit 6d44abf
Showing
5 changed files
with
32 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
type Props = { | ||
oldestToNewest?: boolean | ||
} | ||
export function ListingOrderLabel({ oldestToNewest = true }: Props) { | ||
return ( | ||
<div className="mt-3"> | ||
<small>Note: This listing is {oldestToNewest ? 'oldest to newest' : 'newest to oldest'}.</small> | ||
</div> | ||
) | ||
} |
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 |
---|---|---|
|
@@ -154,6 +154,6 @@ | |
} | ||
|
||
small { | ||
@apply text-sm font-medium leading-none; | ||
@apply text-sm text-muted-foreground leading-none; | ||
} | ||
} |