Resolve "Remove “commented” from comment system notes"
This commit is contained in:
parent
0397b8134f
commit
dea03a0815
3 changed files with 0 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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', () => {
|
||||
|
|
Loading…
Reference in a new issue