@@ -124,6 +124,7 @@ const translation = ref
(null);
const translating = ref(false);
const isDeleted = ref(false);
const renoted = ref(false);
+const numberOfReplies = ref(defaultStore.state.numberOfReplies);
const reactButton = shallowRef();
const renoteButton = shallowRef();
const quoteButton = shallowRef();
@@ -390,7 +391,7 @@ function menu(viaKeyboard = false): void {
if (props.detail) {
os.api('notes/children', {
noteId: props.note.id,
- limit: 5,
+ limit: numberOfReplies.value,
showQuotes: false,
}).then(res => {
replies = res;
diff --git a/packages/frontend/src/components/MkVisitorDashboard.vue b/packages/frontend/src/components/MkVisitorDashboard.vue
index aa0a64c269..4678150b56 100644
--- a/packages/frontend/src/components/MkVisitorDashboard.vue
+++ b/packages/frontend/src/components/MkVisitorDashboard.vue
@@ -104,7 +104,7 @@ function showMenu(ev) {
},
}, {
text: i18n.ts.aboutMisskey,
- icon: 'ph-info ph-bold ph-lg',
+ icon: 'sk-icons sk-shark ph-bold',
action: () => {
os.pageWindow('/about-sharkey');
},
diff --git a/packages/frontend/src/components/SkNoteSub.vue b/packages/frontend/src/components/SkNoteSub.vue
index 64c71efd4e..dd4abe8f58 100644
--- a/packages/frontend/src/components/SkNoteSub.vue
+++ b/packages/frontend/src/components/SkNoteSub.vue
@@ -72,7 +72,7 @@ SPDX-License-Identifier: AGPL-3.0-only
-