Change name for the announcement being edited to editedAnnouncement

This commit is contained in:
Tusooa Zhu 2022-03-20 13:49:26 -04:00 committed by tusooa
parent eac0008002
commit 5f633bbfa3
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
2 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -12,7 +12,7 @@
/>
<announcement-editor
v-else
:announcement="newAnnouncement"
:announcement="editedAnnouncement"
/>
</div>
<div class="footer">