mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 16:03:10 +02:00
Update timeline-post.tag
This commit is contained in:
parent
a44b5084e4
commit
d99056304a
1 changed files with 5 additions and 6 deletions
|
@ -335,12 +335,11 @@
|
||||||
|
|
||||||
this.repost = () => {
|
this.repost = () => {
|
||||||
const text = window.prompt(`「${this.summary}」をRepost`);
|
const text = window.prompt(`「${this.summary}」をRepost`);
|
||||||
if (text) {
|
if (text == null) return;
|
||||||
this.api('posts/create', {
|
this.api('posts/create', {
|
||||||
repost_id: this.p.id,
|
repost_id: this.p.id,
|
||||||
text: text == '' ? undefined : text
|
text: text == '' ? undefined : text
|
||||||
});
|
});
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
this.like = () => {
|
this.like = () => {
|
||||||
|
|
Loading…
Reference in a new issue