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
94547f81
Commit
94547f81
authored
Apr 26, 2019
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Merge branch '60855-mr-popover-is-not-attached-in-system-notes' into 'master'"
This reverts merge request !27589
parent
61438335
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
15 deletions
+0
-15
app/assets/javascripts/vue_shared/components/notes/system_note.vue
...s/javascripts/vue_shared/components/notes/system_note.vue
+0
-4
changelogs/unreleased/60855-mr-popover-is-not-attached-in-system-notes.yml
...ased/60855-mr-popover-is-not-attached-in-system-notes.yml
+0
-5
spec/frontend/vue_shared/components/notes/system_note_spec.js
.../frontend/vue_shared/components/notes/system_note_spec.js
+0
-6
No files found.
app/assets/javascripts/vue_shared/components/notes/system_note.vue
View file @
94547f81
...
...
@@ -22,7 +22,6 @@ import noteHeader from '~/notes/components/note_header.vue';
import
Icon
from
'
~/vue_shared/components/icon.vue
'
;
import
TimelineEntryItem
from
'
./timeline_entry_item.vue
'
;
import
{
spriteIcon
}
from
'
../../../lib/utils/common_utils
'
;
import
initMRPopovers
from
'
~/mr_popover/
'
;
const
MAX_VISIBLE_COMMIT_LIST_COUNT
=
3
;
...
...
@@ -72,9 +71,6 @@ export default {
);
},
},
mounted
()
{
initMRPopovers
(
this
.
$el
.
querySelectorAll
(
'
.gfm-merge_request
'
));
},
};
</
script
>
...
...
changelogs/unreleased/60855-mr-popover-is-not-attached-in-system-notes.yml
deleted
100644 → 0
View file @
61438335
---
title
:
Fix bug where system note MR has no popover
merge_request
:
27589
author
:
type
:
fixed
spec/frontend/vue_shared/components/notes/system_note_spec.js
View file @
94547f81
...
...
@@ -5,10 +5,8 @@ import createStore from '~/notes/stores';
describe
(
'
system note component
'
,
()
=>
{
let
vm
;
let
props
;
let
initMRPopoversSpy
;
beforeEach
(()
=>
{
initMRPopoversSpy
=
spyOnDependency
(
issueSystemNote
,
'
initMRPopovers
'
);
props
=
{
note
:
{
id
:
'
1424
'
,
...
...
@@ -58,8 +56,4 @@ describe('system note component', () => {
it
(
'
removes wrapping paragraph from note HTML
'
,
()
=>
{
expect
(
vm
.
$el
.
querySelector
(
'
.system-note-message
'
).
innerHTML
).
toEqual
(
'
<span>closed</span>
'
);
});
it
(
'
should initMRPopovers onMount
'
,
()
=>
{
expect
(
initMRPopoversSpy
).
toHaveBeenCalled
();
});
});
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