Merge branch 'main' of github.com:remanso-space/remanso

This commit is contained in:
Julien Calixte
2026-02-20 10:00:44 +01:00
11 changed files with 62 additions and 27 deletions

View File

@@ -32,7 +32,11 @@ const author = computedAsync(async () => getAuthor(did.value))
<router-link
:to="{
name: 'PublicNoteView',
params: { did: note.did, rkey: note.rkey, slug: slugify(note.title) },
params: {
did: note.did,
rkey: note.rkey,
slug: slugify(note.title),
},
}"
class="btn btn-link"
>{{ note.title }}</router-link
@@ -87,6 +91,7 @@ const author = computedAsync(async () => getAuthor(did.value))
}
a {
display: inline;
text-align: left;
}

View File

@@ -25,7 +25,11 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAuthor } =
<router-link
:to="{
name: 'PublicNoteView',
params: { did: note.did, rkey: note.rkey, slug: slugify(note.title) },
params: {
did: note.did,
rkey: note.rkey,
slug: slugify(note.title),
},
}"
class="btn btn-link"
>{{ note.title }}</router-link
@@ -95,6 +99,7 @@ const { notes, isLoading, canLoadMore, onLoadMore, getAuthor } =
}
a {
display: inline;
text-align: left;
}

View File

@@ -133,7 +133,7 @@ watch(
:key="stackedNote"
class="note"
:index="index"
:at-uri="stackedNote"
:didrkey="stackedNote"
/>
</div>
</template>