logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 5f633bbfa3a79a295955c883a8e734f08def321a
parent eac0008002116efa9bf435c428a91cc2c0a2dd42
Author: Tusooa Zhu <tusooa@kazv.moe>
Date:   Sun, 20 Mar 2022 13:49:26 -0400

Change name for the announcement being edited to editedAnnouncement

Diffstat:

Msrc/components/announcement/announcement.js12++++++------
Msrc/components/announcement/announcement.vue2+-
2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/components/announcement/announcement.js b/src/components/announcement/announcement.js @@ -9,7 +9,7 @@ const Announcement = { data () { return { editing: false, - newAnnouncement: { + editedAnnouncement: { content: '', startsAt: undefined, endsAt: undefined, @@ -65,16 +65,16 @@ const Announcement = { return this.announcement['all_day'] ? d.toLocaleDateString(locale) : d.toLocaleString(locale) }, enterEditMode () { - this.newAnnouncement.content = this.announcement.pleroma['raw_content'] - this.newAnnouncement.startsAt = this.announcement['starts_at'] - this.newAnnouncement.endsAt = this.announcement['ends_at'] - this.newAnnouncement.allDay = this.announcement['all_day'] + this.editedAnnouncement.content = this.announcement.pleroma['raw_content'] + this.editedAnnouncement.startsAt = this.announcement['starts_at'] + this.editedAnnouncement.endsAt = this.announcement['ends_at'] + this.editedAnnouncement.allDay = this.announcement['all_day'] this.editing = true }, submitEdit () { this.$store.dispatch('editAnnouncement', { id: this.announcement.id, - ...this.newAnnouncement + ...this.editedAnnouncement }) .then(() => { this.editing = false diff --git a/src/components/announcement/announcement.vue b/src/components/announcement/announcement.vue @@ -12,7 +12,7 @@ /> <announcement-editor v-else - :announcement="newAnnouncement" + :announcement="editedAnnouncement" /> </div> <div class="footer">