Commit e0d583cb authored by Fatih Acet's avatar Fatih Acet

IssueNotesRefactor: Minor naming change to improve readability.

parent 0fc45b6c
......@@ -148,8 +148,8 @@
:can-delete="note.current_user.can_edit"
:can-report-as-abuse="canReportAsAbuse"
:report-abuse-path="note.report_abuse_path"
@editHandler="editHandler"
@deleteHandler="deleteHandler"
@handleEdit="editHandler"
@handleDelete="deleteHandler"
/>
</div>
<issue-note-body
......
......@@ -66,10 +66,10 @@
},
methods: {
onEdit() {
this.$emit('editHandler');
this.$emit('handleEdit');
},
onDelete() {
this.$emit('deleteHandler');
this.$emit('handleDelete');
},
},
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