-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add react-table dependency * Add shadcn Tasks components * Expose PopoverClose * Add adapted filters for future tags * Add useDebounce hook * Add txs columns * Add filters toolbar * Add txs table * Use new TxsTable * Add catch-all route for diagram * Fix diagram link url * Adapt test
- Loading branch information
Showing
9 changed files
with
40 additions
and
553 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import TxData from "@/components/tx-data"; | ||
import { Sheet, SheetContent } from "@/components/ui/sheet"; | ||
|
||
export default function Tx({ params }: { params: { span: string[] } }) { | ||
const [txId, spanId] = params.span; | ||
|
||
return ( | ||
<Sheet defaultOpen> | ||
<SheetContent className="min-w-[80%]"> | ||
<div> | ||
<div>Transaction {txId}</div> | ||
<TxData txId={txId} spanId={spanId} /> | ||
</div> | ||
</SheetContent> | ||
</Sheet> | ||
); | ||
} |
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,3 @@ | ||
export default function Default() { | ||
return null; | ||
} |
File renamed without changes.
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
Oops, something went wrong.