1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 15:55:56 +02:00

ハッシュタグ入力が空のときに#が付くのを修正

This commit is contained in:
syuilo
2021-08-10 16:06:14 +09:00
parent f4f8debb92
commit e19cc8bebf

View File

@@ -615,7 +615,7 @@ export default defineComponent({
viaMobile: isMobile
};
if (this.withHashtags) {
if (this.withHashtags && this.hashtags && this.hashtags.trim() !== '') {
const hashtags = this.hashtags.trim().split(' ').map(x => x.startsWith('#') ? x : '#' + x).join(' ');
data.text = data.text ? `${data.text} ${hashtags}` : hashtags;
}