refactor: 絵文字URLを引き回すのをやめる (#9423)

This commit is contained in:
syuilo
2022-12-29 10:14:44 +09:00
committed by GitHub
parent 510e6ec7e9
commit 912791b3ab
28 changed files with 79 additions and 58 deletions

View File

@@ -35,9 +35,6 @@ export default defineComponent({
type: Object,
default: null,
},
customEmojis: {
required: false,
},
isNote: {
type: Boolean,
default: true,
@@ -275,7 +272,6 @@ export default defineComponent({
return [h(MkEmoji, {
key: Math.random(),
emoji: `:${token.props.name}:`,
customEmojis: this.customEmojis,
normal: this.plain,
})];
}
@@ -284,7 +280,6 @@ export default defineComponent({
return [h(MkEmoji, {
key: Math.random(),
emoji: token.props.emoji,
customEmojis: this.customEmojis,
normal: this.plain,
})];
}