+
{{ item.description }}
@@ -129,10 +123,7 @@
class="avatar"
:show-indicator="true"
/>
-
+
@@ -358,16 +349,9 @@ os.api("notes/children", {
}).then((res) => {
replies.value = res;
directReplies = res
- .filter(
- (note) =>
- note.replyId === appearNote.id
- )
+ .filter((note) => note.replyId === appearNote.id)
.reverse();
- directQuotes = res
- .filter(
- (note) =>
- note.renoteId === appearNote.id
- );
+ directQuotes = res.filter((note) => note.renoteId === appearNote.id);
});
conversation = null;
@@ -404,7 +388,7 @@ function loadTab() {
limit: 100,
}).then((res) => {
renotes = res;
- })
+ });
}
}
@@ -627,7 +611,9 @@ onUnmounted(() => {
padding-left: 10px;
}
}
- > .clips, > .chips, > :deep(.user-card-mini) {
+ > .clips,
+ > .chips,
+ > :deep(.user-card-mini) {
padding-inline: 16px !important;
}
}
@@ -643,7 +629,8 @@ onUnmounted(() => {
opacity: 0.7;
}
-.clips { // want to redesign at some point
+.clips {
+ // want to redesign at some point
padding: 24px 32px;
padding-top: 0;
> .item {
@@ -652,8 +639,9 @@ onUnmounted(() => {
// background: var(--buttonBg);
border: 1px solid var(--divider);
margin-bottom: var(--margin);
- transition: background .2s;
- &:hover, &:focus-within {
+ transition: background 0.2s;
+ &:hover,
+ &:focus-within {
background: var(--panelHighlight);
}
diff --git a/packages/client/src/components/MkNoteSub.vue b/packages/client/src/components/MkNoteSub.vue
index 9a3e577b6..2b8d6e8df 100644
--- a/packages/client/src/components/MkNoteSub.vue
+++ b/packages/client/src/components/MkNoteSub.vue
@@ -135,7 +135,7 @@
:key="reply.id"
:note="reply"
class="reply"
- :class="{single: replies.length == 1}"
+ :class="{ single: replies.length == 1 }"
:conversation="conversation"
:depth="replies.lenght == 1 ? depth : depth + 1"
:replyLevel="replyLevel + 1"
diff --git a/packages/client/src/components/MkShowMoreButton.vue b/packages/client/src/components/MkShowMoreButton.vue
index 481bc510d..3dd9acb9b 100644
--- a/packages/client/src/components/MkShowMoreButton.vue
+++ b/packages/client/src/components/MkShowMoreButton.vue
@@ -1,5 +1,10 @@