web47core 3.2.3.2 → 3.2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4ea011b78b454bc36a332cb5f15793ba9ea767bf7fb19f6b13d426760fb9ba7d
|
4
|
+
data.tar.gz: eb64b31b17f0ae1532031507baec92c7161235c79109a439878f1598f88191f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfda9fa536faf817f3e32022c2f910acde0fdb4f4c0601630acaaaadccea3410a88b65a7e7ce52d2e5781cdc891fa60952bf5b4cdad29f3906fb61dbdc46cc53
|
7
|
+
data.tar.gz: ecf47e10b617684c02461be4c12e230131a9418408a7e2999a7a9ceb095b8a75220557b884cf88e3c6f28a80a97cc7ea1c24caa551a501c3d809eb269ce6c23f
|
@@ -64,6 +64,8 @@ module CoreNavBarHelper
|
|
64
64
|
end
|
65
65
|
|
66
66
|
def nav_link(name, action_path, badge_count: 0, classes: [])
|
67
|
+
return if classes.include?('d-none')
|
68
|
+
|
67
69
|
ac = [classes, 'truncate', 'nav-link'].compact.join(' ')
|
68
70
|
content_tag(:a, href: action_path, class: ac) do
|
69
71
|
concat(content_tag(:span, class: 'nav-link-icon d-md-none d-lg-inline-block') { svg_icon(name) })
|
@@ -4,8 +4,8 @@
|
|
4
4
|
= refresh_floating_action_link(SystemConfiguration.configuration, sync_system_configurations_path)
|
5
5
|
.card
|
6
6
|
.card-body
|
7
|
-
.table-responsive
|
8
|
-
%table.table.
|
7
|
+
.table-responsive
|
8
|
+
%table.table.border.table-hover.table-vcenter.datatable.card-table.no-wrap.responsive
|
9
9
|
%thead
|
10
10
|
%tr
|
11
11
|
%th Field
|
@@ -93,6 +93,7 @@ module Delayed
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def worker_host_name
|
96
|
+
Rails.logger.debug "worker_host_name - locked_by: #{locked_by}"
|
96
97
|
parts = locked_by.split
|
97
98
|
case parts.count
|
98
99
|
when 2
|
@@ -105,6 +106,7 @@ module Delayed
|
|
105
106
|
end
|
106
107
|
|
107
108
|
def worker_pid
|
109
|
+
Rails.logger.debug "worker_pid - locked_by: #{locked_by}"
|
108
110
|
parts = locked_by.split
|
109
111
|
case parts.count
|
110
112
|
when 2
|
@@ -112,7 +114,7 @@ module Delayed
|
|
112
114
|
when 3
|
113
115
|
parts[2]
|
114
116
|
else
|
115
|
-
raise "Unknown
|
117
|
+
raise "Unknown worker_pid for delayed job #{parts}"
|
116
118
|
end.split(':').last
|
117
119
|
end
|
118
120
|
end
|
data/lib/web47core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web47core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.3.
|
4
|
+
version: 3.2.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Schroeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-09-
|
11
|
+
date: 2025-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|