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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
ba6f92f5
Commit
ba6f92f5
authored
Dec 17, 2018
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
c531b2ba
5443b8a0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
11 deletions
+37
-11
app/assets/javascripts/notes/components/noteable_discussion.vue
...sets/javascripts/notes/components/noteable_discussion.vue
+8
-0
app/assets/javascripts/notes/components/noteable_note.vue
app/assets/javascripts/notes/components/noteable_note.vue
+14
-11
app/assets/stylesheets/pages/notes.scss
app/assets/stylesheets/pages/notes.scss
+10
-0
changelogs/unreleased/53954-resolved-non-diff-discussions-on-merge-requests-no-longer-show-who-resolved-them-and-when-at-a-glance.yml
...no-longer-show-who-resolved-them-and-when-at-a-glance.yml
+5
-0
No files found.
app/assets/javascripts/notes/components/noteable_discussion.vue
View file @
ba6f92f5
...
...
@@ -388,6 +388,14 @@ Please check your network connection and try again.`;
:help-page-path=
"helpPagePath"
@
handleDeleteNote=
"deleteNoteHandler"
>
<note-edited-text
v-if=
"discussion.resolved"
slot=
"discussion-resolved-text"
:edited-at=
"discussion.resolved_at"
:edited-by=
"discussion.resolved_by"
:action-text=
"resolvedText"
class-name=
"discussion-headline-light js-discussion-headline discussion-resolved-text"
/>
<slot
slot=
"avatar-badge"
name=
"avatar-badge"
></slot>
</component>
<toggle-replies-widget
...
...
app/assets/javascripts/notes/components/noteable_note.vue
View file @
ba6f92f5
...
...
@@ -199,7 +199,7 @@ export default {
:img-alt=
"author.name"
:img-size=
"40"
>
<slot
slot=
"avatar-badge"
name=
"avatar-badge"
>
</slot>
<slot
slot=
"avatar-badge"
name=
"avatar-badge"
></slot>
</user-avatar-link>
</div>
<div
class=
"timeline-content"
>
...
...
@@ -237,16 +237,19 @@ export default {
@
handleResolve=
"resolveHandler"
/>
</div>
<note-body
ref=
"noteBody"
:note=
"note"
:line=
"line"
:can-edit=
"note.current_user.can_edit"
:is-editing=
"isEditing"
:help-page-path=
"helpPagePath"
@
handleFormUpdate=
"formUpdateHandler"
@
cancelForm=
"formCancelHandler"
/>
<div
class=
"timeline-discussion-body"
>
<slot
name=
"discussion-resolved-text"
></slot>
<note-body
ref=
"noteBody"
:note=
"note"
:line=
"line"
:can-edit=
"note.current_user.can_edit"
:is-editing=
"isEditing"
:help-page-path=
"helpPagePath"
@
handleFormUpdate=
"formUpdateHandler"
@
cancelForm=
"formCancelHandler"
/>
</div>
</div>
</timeline-entry-item>
</
template
>
app/assets/stylesheets/pages/notes.scss
View file @
ba6f92f5
...
...
@@ -152,6 +152,16 @@ $note-form-margin-left: 72px;
display
:
block
;
position
:
relative
;
.timeline-discussion-body
{
margin-top
:
-8px
;
overflow-x
:
auto
;
overflow-y
:
hidden
;
.discussion-resolved-text
{
margin-bottom
:
8px
;
}
}
.diff-content
{
overflow
:
visible
;
padding
:
0
;
...
...
changelogs/unreleased/53954-resolved-non-diff-discussions-on-merge-requests-no-longer-show-who-resolved-them-and-when-at-a-glance.yml
0 → 100644
View file @
ba6f92f5
---
title
:
Show message on non-diff discussions
merge_request
:
author
:
type
:
changed
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