Skip to content
Snippets Groups Projects
Commit b050b681 authored by Kushal Pandya's avatar Kushal Pandya Committed by Phil Hughes
Browse files

Fix user and issues autocomplete in diff notes

parent b39b02d4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -13,7 +13,7 @@
.block-connector
= render "projects/diffs/diffs", diffs: @diffs, environment: @environment
 
= render "shared/notes/notes_with_form"
= render "shared/notes/notes_with_form", :autocomplete => true
- if can_collaborate_with_project?
- %w(revert cherry-pick).each do |type|
= render "projects/commit/change", type: type, commit: @commit, title: @commit.title
Loading
Loading
@@ -4,4 +4,4 @@
= link_to 'Close issue', issue_path(@issue, issue: {state_event: :close}, format: 'json'), data: {no_turbolink: true, original_text: "Close issue", alternative_text: "Comment & close issue"}, class: "btn btn-nr btn-close btn-comment js-note-target-close #{issue_button_visibility(@issue, true)}", title: 'Close issue'
 
#notes
= render 'shared/notes/notes_with_form'
= render 'shared/notes/notes_with_form', :autocomplete => true
Loading
Loading
@@ -8,4 +8,4 @@
%button.btn.btn-nr.btn-default.append-right-10.js-comment-resolve-button{ "v-if" => "showButton", type: "submit", data: { project_path: "#{project_path(@merge_request.project)}" } }
{{ buttonText }}
 
#notes= render "shared/notes/notes_with_form"
#notes= render "shared/notes/notes_with_form", :autocomplete => true
Loading
Loading
@@ -9,4 +9,4 @@
.row-content-block.top-block.content-component-block
= render 'award_emoji/awards_block', awardable: @snippet, inline: true
 
#notes= render "shared/notes/notes_with_form"
#notes= render "shared/notes/notes_with_form", :autocomplete => true
Loading
Loading
@@ -23,4 +23,4 @@
to post a comment
 
:javascript
var notes = new Notes("#{notes_url}", #{@notes.map(&:id).to_json}, #{Time.now.to_i}, "#{diff_view}", false)
var notes = new Notes("#{notes_url}", #{@notes.map(&:id).to_json}, #{Time.now.to_i}, "#{diff_view}", #{autocomplete})
Loading
Loading
@@ -9,4 +9,4 @@
.row-content-block.top-block.content-component-block
= render 'award_emoji/awards_block', awardable: @snippet, inline: true
 
#notes= render "shared/notes/notes_with_form"
#notes= render "shared/notes/notes_with_form", :autocomplete => false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment