diff --git a/src/client/components/note-detailed.vue b/src/client/components/note-detailed.vue
index 68e7c87f2..40b0a68c5 100644
--- a/src/client/components/note-detailed.vue
+++ b/src/client/components/note-detailed.vue
@@ -80,7 +80,7 @@
-
+
{{ appearNote.channel.name }}
@@ -132,7 +132,7 @@ import * as mfm from 'mfm-js';
import { sum } from '../../prelude/array';
import XSub from './note.sub.vue';
import XNoteHeader from './note-header.vue';
-import XNotePreview from './note-preview.vue';
+import XNoteSimple from './note-simple.vue';
import XReactionsViewer from './reactions-viewer.vue';
import XMediaList from './media-list.vue';
import XCwButton from './cw-button.vue';
@@ -153,7 +153,7 @@ export default defineComponent({
components: {
XSub,
XNoteHeader,
- XNotePreview,
+ XNoteSimple,
XReactionsViewer,
XMediaList,
XCwButton,
diff --git a/src/client/components/note-preview.vue b/src/client/components/note-simple.vue
similarity index 100%
rename from src/client/components/note-preview.vue
rename to src/client/components/note-simple.vue
diff --git a/src/client/components/note.vue b/src/client/components/note.vue
index 3b07884ce..91a3e3b87 100644
--- a/src/client/components/note.vue
+++ b/src/client/components/note.vue
@@ -64,7 +64,7 @@
-
+
@@ -114,7 +114,7 @@ import * as mfm from 'mfm-js';
import { sum } from '../../prelude/array';
import XSub from './note.sub.vue';
import XNoteHeader from './note-header.vue';
-import XNotePreview from './note-preview.vue';
+import XNoteSimple from './note-simple.vue';
import XReactionsViewer from './reactions-viewer.vue';
import XMediaList from './media-list.vue';
import XCwButton from './cw-button.vue';
@@ -134,7 +134,7 @@ export default defineComponent({
components: {
XSub,
XNoteHeader,
- XNotePreview,
+ XNoteSimple,
XReactionsViewer,
XMediaList,
XCwButton,
diff --git a/src/client/components/post-form.vue b/src/client/components/post-form.vue
index 85117b074..3b8db2109 100644
--- a/src/client/components/post-form.vue
+++ b/src/client/components/post-form.vue
@@ -22,8 +22,8 @@