Resolve "Remove “commented” from comment system notes"

This commit is contained in:
Constance Okoghenun 2018-06-19 16:43:57 +00:00 committed by Mike Greiling
parent 0397b8134f
commit dea03a0815
3 changed files with 0 additions and 4 deletions

View File

@ -170,7 +170,6 @@ export default {
:author="author"
:created-at="note.created_at"
:note-id="note.id"
action-text="commented"
/>
<note-actions
:author-id="author.id"

View File

@ -36,8 +36,6 @@
= note.author.to_reference
%span.note-headline-light
%span.note-headline-meta
- unless note.system
commented
- if note.system
%span.system-note-message
= markdown_field(note, :note)

View File

@ -32,7 +32,6 @@ describe('issue_note', () => {
it('should render note header content', () => {
expect(vm.$el.querySelector('.note-header .note-header-author-name').textContent.trim()).toEqual(note.author.name);
expect(vm.$el.querySelector('.note-header .note-headline-meta').textContent.trim()).toContain('commented');
});
it('should render note actions', () => {