Update timeline-post.tag

This commit is contained in:
syuilo⭐️ 2017-02-22 20:32:03 +09:00
parent a44b5084e4
commit d99056304a

View file

@ -335,12 +335,11 @@
this.repost = () => {
const text = window.prompt(`「${this.summary}」をRepost`);
if (text) {
this.api('posts/create', {
repost_id: this.p.id,
text: text == '' ? undefined : text
});
}
if (text == null) return;
this.api('posts/create', {
repost_id: this.p.id,
text: text == '' ? undefined : text
});
};
this.like = () => {