mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
At the moment discussion notes are rendered in a list but arent actually a list item and that can cause overflow issues Moved the dates to be in the header like other notes Fixed overlapping issue on mobile
17 lines
849 B
Plaintext
17 lines
849 B
Plaintext
- note = discussion_notes.first
|
|
.discussion.js-toggle-container{ class: note.discussion_id }
|
|
.discussion-header
|
|
= link_to_member(@project, note.author, avatar: false)
|
|
.inline.discussion-headline-light
|
|
= "#{note.author.to_reference} started a discussion"
|
|
= link_to diffs_namespace_project_merge_request_path(note.project.namespace, note.project, note.noteable, anchor: note.line_code) do
|
|
on the diff
|
|
= time_ago_with_tooltip(note.created_at, placement: "bottom", html_class: "discussion_updated_ago")
|
|
.discussion-actions
|
|
= link_to "#", class: "discussion-action-button discussion-toggle-button js-toggle-button" do
|
|
%i.fa.fa-chevron-up
|
|
Show/hide discussion
|
|
|
|
.discussion-body.js-toggle-content
|
|
= render "projects/notes/discussions/diff", discussion_notes: discussion_notes, note: note
|