-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
45 additions
and
16 deletions.
There are no files selected for viewing
10 changes: 7 additions & 3 deletions
10
src/routes/[network]/(explorer)/msig/[proposer]/[proposal]/+page.svelte
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 |
---|---|---|
@@ -1,12 +1,16 @@ | ||
<script lang="ts"> | ||
import type { PageData } from './$types'; | ||
import * as m from '$lib/paraglide/messages.js'; | ||
export let data: PageData; | ||
</script> | ||
|
||
<h1>{data.proposer}/{data.name}</h1> | ||
<!-- | ||
This section is commented out because the corresponding load method in +page.ts is also commented out. | ||
Once the load method is implemented and returning the expected data, we can uncomment and use this part. | ||
--> | ||
|
||
<!-- <h1>{data.proposer}/{data.name}</h1> | ||
<pre> | ||
{JSON.stringify(data.proposal, null, 2)} | ||
</pre> | ||
</pre> --> |
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
3 changes: 1 addition & 2 deletions
3
src/routes/[network]/(explorer)/transaction/[id]/[[seq]]/data/+page.svelte
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