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

This commit is contained in:
syuilo 2021-08-10 16:06:14 +09:00
parent f4f8debb92
commit e19cc8bebf
1 changed files with 1 additions and 1 deletions

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;
}