Monorepo for Tangled tangled.org
1

Configure Feed

Select the types of activity you want to include in your feed.

Labels

None yet.

Participants 1
AT URI
at://did:plc:xasnlahkri4ewmbuzly2rlc5/sh.tangled.repo.pull/3mrmrvzsv3k22
+2 -4
Diff #1
+1 -1
web/src/lib/components/profile/tabs/OverviewTab.svelte
··· 18 18 empty={pinned.length === 0} 19 19 emptyMessage="No pinned repositories." 20 20 > 21 - {#each pinned as repo (repo.rkey)} 21 + {#each pinned as repo (repo.repoDid)} 22 22 <RepoCard {repo} starButton={false} showOwner={false} /> 23 23 {/each} 24 24 </Section>
+1 -1
web/src/lib/components/profile/tabs/RepoListTab.svelte
··· 43 43 </form> 44 44 </div> 45 45 {/snippet} 46 - {#each repos as repo (repo.rkey)} 46 + {#each repos as repo (repo.repoDid)} 47 47 <RepoCard {repo} showOwner={false} /> 48 48 {/each} 49 49 </Section>
-2
web/src/lib/components/profile/types.ts
··· 10 10 } 11 11 12 12 export interface RepoCardData { 13 - rkey: string; 14 13 name: string; 15 14 repoDid: string; 16 15 ownerHandle: string; 17 16 description?: string; 18 - knot: string; 19 17 createdAt: string; 20 18 language?: string; 21 19 stars?: number;

History

2 rounds 0 comments
Sign up or Login to add to the discussion
1 commit
Expand
web: remove rkey and knot fields from RepoCardData
Checking mergeability…
Expand 0 comments
1 commit
Expand
web: remove rkey and knot fields from RepoCardData
Expand 0 comments