Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
e0d583cb
Commit
e0d583cb
authored
Aug 21, 2017
by
Fatih Acet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IssueNotesRefactor: Minor naming change to improve readability.
parent
0fc45b6c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
app/assets/javascripts/notes/components/issue_note.vue
app/assets/javascripts/notes/components/issue_note.vue
+2
-2
app/assets/javascripts/notes/components/issue_note_actions.vue
...ssets/javascripts/notes/components/issue_note_actions.vue
+2
-2
No files found.
app/assets/javascripts/notes/components/issue_note.vue
View file @
e0d583cb
...
...
@@ -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
...
...
app/assets/javascripts/notes/components/issue_note_actions.vue
View file @
e0d583cb
...
...
@@ -66,10 +66,10 @@
},
methods
:
{
onEdit
()
{
this
.
$emit
(
'
editHandler
'
);
this
.
$emit
(
'
handleEdit
'
);
},
onDelete
()
{
this
.
$emit
(
'
deleteHandler
'
);
this
.
$emit
(
'
handleDelete
'
);
},
},
created
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment