Skip to content

Commit

Permalink
fix: チャットあれこれ
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 5, 2023
1 parent 163c3ae commit 5a32cf8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- 리액션 변경 기능을 사용할 수 없음
- Fix: 노트 상세 페이지의 노트 입력 폼을 누르기 전에 일부 요소가 표시될 수 있음
- Fix: 히트맵이 표시되지 않음
- Fix: 대화 페이지에서 일부 요소가 중복으로 표시될 수 있음
- Fix: 브랜딩에서 적용한 이미지가 대화 페이지에서 반영되지 않음

### Server
- Revert: Feat: 이모티콘 중복 체크 (misskey-dev/misskey#11941)
Expand Down
7 changes: 0 additions & 7 deletions packages/frontend/src/pages/messaging/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkChatPreview v-for="message in items" :key="message.id" :message="message"/>
</MkPagination>
</div>
<div v-if="!fetching && messages.length == 0" class="_fullinfo">
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost" alt=""/>
<div>{{ i18n.ts.noHistory }}</div>
</div>
<MkLoading v-if="fetching"/>
</div>
</MkSpacer>
</MkStickyContainer>
Expand All @@ -45,7 +40,6 @@ const router = useRouter();

let tab = $ref('direct');

let fetching = $ref(true);
let messages;
let connection;

Expand Down Expand Up @@ -144,7 +138,6 @@ onMounted(() => {
const _messages = userMessages.concat(groupMessages);
_messages.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
messages = _messages;
fetching = false;
});
});

Expand Down
6 changes: 0 additions & 6 deletions packages/frontend/src/pages/messaging/messaging-room.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkSpacer :contentMax="800">
<div :class="$style.body">
<MkPagination v-if="pagination" ref="pagingComponent" :key="userAcct || groupId" :pagination="pagination">
<template #empty>
<div class="_fullinfo">
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
<div>{{ i18n.ts.noMessagesYet }}</div>
</div>
</template>
<template #default="{ items: messages, fetching: pFetching }">
<MkDateSeparatedList
v-if="messages.length > 0"
Expand Down

0 comments on commit 5a32cf8

Please sign in to comment.