mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
The "Begin with the selected commit" checkbox requires the submit button to be enabled, even if the extended SHA1 input field is blank.
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
- page_title "Network", @ref
|
|
= render "head"
|
|
.project-network
|
|
.controls
|
|
= form_tag namespace_project_network_path(@project.namespace, @project, @id), method: :get, class: 'form-inline network-form' do |f|
|
|
= text_field_tag :extended_sha1, @options[:extended_sha1], placeholder: "Input an extended SHA1 syntax", class: 'search-input form-control input-mx-250 search-sha'
|
|
= button_tag class: 'btn btn-success' do
|
|
= icon('search')
|
|
.inline.prepend-left-20
|
|
.checkbox.light
|
|
= label_tag :filter_ref do
|
|
= check_box_tag :filter_ref, 1, @options[:filter_ref]
|
|
%span Begin with the selected commit
|
|
|
|
.network-graph
|
|
= spinner nil, true
|
|
|
|
:javascript
|
|
network_graph = new Network({
|
|
url: '#{namespace_project_network_path(@project.namespace, @project, @ref, @options.merge(format: :json))}',
|
|
commit_url: '#{namespace_project_commit_path(@project.namespace, @project, 'ae45ca32').gsub("ae45ca32", "%s")}',
|
|
ref: '#{@ref}',
|
|
commit_id: '#{@commit.id}'
|
|
})
|
|
new ShortcutsNetwork(network_graph.branch_graph)
|