rocketjob_mission_control 6.0.2 → 6.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f0ff1589caa1d05582d26ed8066bb8692a2f0e970ee0df9235de842e5792e56
4
- data.tar.gz: d2f6f248c3a83be868ddce542915cd1b70989f16186e84eec5df2719a9b009a9
3
+ metadata.gz: ee3de74ff7aef46373fef456bc82a5132d26426623ef6368cf3023e42b77ef33
4
+ data.tar.gz: ce788f2b01b7d4599f11affffadb4ff603430726e802fdd1319ec835e1ca43e3
5
5
  SHA512:
6
- metadata.gz: 17aeb07f3b5f2f4c2f725007124f261d5087fb837afc1f5da651bd3461c42acd3f0ea9ec9168659d77fa42b2b9f2b7efed29f64bf278a47e24325eeae46cd9ab
7
- data.tar.gz: a3faf35d73494882e2ac7bebee951f79da92c58465405ebb4c2442b17cedaf8906d2c5521df72bf25c845f779e195759524a081a3a9bc3f55b089070efe6b3ea
6
+ metadata.gz: ed24f68177bd702dd64c788dce94a1f2e72d685b5fd560b579dde45deff86b42c49ab5d469fb63f143bf0f52fbaea0f3c2571e99de8f348c4ecb25e1ea981f84
7
+ data.tar.gz: 02a1b7a5e4e8988b6fed0d538636ac7516258e5b166d0a780c10c80f73af7c1b98f1a95ba869ac94ecaa8146ceea5ce9637e3bc0e705cda605abe37eec836755
@@ -92,8 +92,8 @@ module RocketJobMissionControl
92
92
  "[JSON Hash]\n".html_safe +
93
93
  f.text_field(field_name, value: value ? value.to_json : "", class: "form-control", placeholder: '{"key1":"value1", "key2":"value2", "key3":"value3"}')
94
94
  when "Array"
95
- options = value.present? ? Array(value) : nil
96
- f.text_field(field_name, value: options, class: "selectize form-control", multiple: true)
95
+ options = value.present? ? Array(value) : []
96
+ f.select(field_name, options_for_select(options, options), {}, {class: "selectize form-control", multiple: true})
97
97
  else
98
98
  "[#{field.type.name}]".html_safe +
99
99
  f.text_field(field_name, value: value, class: "form-control", placeholder: placeholder)
@@ -20,7 +20,7 @@
20
20
  </div>
21
21
  </div>
22
22
 
23
- <table class='table datatable active-workers-datatable' data-source='<%= active_workers_url(format: 'json') %>' style='width: 100%'>
23
+ <table class='table datatable active-workers-datatable' data-turbolinks='false' data-source='<%= active_workers_url(format: 'json') %>' style='width: 100%'>
24
24
  <thead>
25
25
  <tr>
26
26
  <th>Worker Name</th>
@@ -12,7 +12,7 @@
12
12
  </div>
13
13
  </div>
14
14
 
15
- <table class='table datatable dirmon-datatable' data-source='<%= @data_table_url %>' style='width: 100%'>
15
+ <table class='table datatable dirmon-datatable' data-turbolinks='false' data-source='<%= @data_table_url %>' style='width: 100%'>
16
16
  <thead>
17
17
  <tr>
18
18
  <th>Name</th>
@@ -1,4 +1,4 @@
1
- <table class='table datatable jobs-datatable' data-source='<%= jobs_url(format: 'json') %>' style='width: 100%'>
1
+ <table class='table datatable jobs-datatable' data-turbolinks='false' data-source='<%= jobs_url(format: 'json') %>' style='width: 100%'>
2
2
  <thead>
3
3
  <tr>
4
4
  <th>Count</th>
@@ -16,7 +16,7 @@
16
16
  </div>
17
17
 
18
18
  <div class="panel-body">
19
- <table class='table datatable jobs-datatable' data-source='<%= @data_table_url %>' style='width: 100%'>
19
+ <table class='table datatable jobs-datatable' data-turbolinks='false' data-source='<%= @data_table_url %>' style='width: 100%'>
20
20
  <thead>
21
21
  <tr>
22
22
  <% @columns.each do |column| %>
@@ -35,7 +35,7 @@
35
35
  </div>
36
36
  </div>
37
37
 
38
- <table class='table datatable servers-datatable' data-source='<%= @data_table_url %>' style='width: 100%'>
38
+ <table class='table datatable servers-datatable' data-turbolinks='false' data-source='<%= @data_table_url %>' style='width: 100%'>
39
39
  <thead>
40
40
  <tr>
41
41
  <th>Hostname : PID</th>
@@ -1,3 +1,3 @@
1
1
  module RocketJobMissionControl
2
- VERSION = "6.0.2".freeze
2
+ VERSION = "6.0.3".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rocketjob_mission_control
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.2
4
+ version: 6.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Cloutier
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2021-09-20 00:00:00.000000000 Z
14
+ date: 2021-10-12 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: access-granted