Commit e0d583cb authored by Fatih Acet's avatar Fatih Acet

IssueNotesRefactor: Minor naming change to improve readability.

parent 0fc45b6c
...@@ -148,8 +148,8 @@ ...@@ -148,8 +148,8 @@
:can-delete="note.current_user.can_edit" :can-delete="note.current_user.can_edit"
:can-report-as-abuse="canReportAsAbuse" :can-report-as-abuse="canReportAsAbuse"
:report-abuse-path="note.report_abuse_path" :report-abuse-path="note.report_abuse_path"
@editHandler="editHandler" @handleEdit="editHandler"
@deleteHandler="deleteHandler" @handleDelete="deleteHandler"
/> />
</div> </div>
<issue-note-body <issue-note-body
......
...@@ -66,10 +66,10 @@ ...@@ -66,10 +66,10 @@
}, },
methods: { methods: {
onEdit() { onEdit() {
this.$emit('editHandler'); this.$emit('handleEdit');
}, },
onDelete() { onDelete() {
this.$emit('deleteHandler'); this.$emit('handleDelete');
}, },
}, },
created() { created() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment