ndr_error 2.4.0 → 2.4.2
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 +4 -4
- data/CHANGELOG.md +8 -1
- data/app/helpers/ndr_error/errors_helper.rb +7 -7
- data/app/views/ndr_error/errors/show.html.erb +2 -2
- data/lib/ndr_error/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f8b7422f35d4b16e8402c00e8a69aa11f525f03b3ab4706de9da71da19fd23e
|
4
|
+
data.tar.gz: fb5961dcc8c850f426b44bb7e7662d3c4b9bc02628acf7179fe4839ff716e09d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab39227fb77d4577ae81152be2c178221e358fa4fe6e9c1e7a6351a128b22d9ec6576e32a6cad15b33a6d8ae61b40721208bb4ca1ede03c7dc06c6925db8b6da
|
7
|
+
data.tar.gz: fa6b884994088356ea98c23d613b7485c928a6729a6f6283014d7a087a2fe33b5620c1cc81ef8e35bb01eede735f8e45405772124562f94b1078b6954d9fde02
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
## [Unreleased]
|
2
|
-
|
2
|
+
* no unreleased changes
|
3
|
+
|
4
|
+
## 2.4.2 / 2025-03-23
|
5
|
+
* fix link with icon button style
|
6
|
+
|
7
|
+
## 2.4.1 / 2025-02-03
|
8
|
+
### Fixed
|
9
|
+
* fix bootstrap 5 data attribute with BS namespace
|
3
10
|
|
4
11
|
## 2.4.0 / 2025-01-31
|
5
12
|
### Changed
|
@@ -33,10 +33,10 @@ module NdrError
|
|
33
33
|
|
34
34
|
text = "+ #{fingerprint.count - 1}"
|
35
35
|
opts = {
|
36
|
-
'class'
|
37
|
-
'data-toggle' => 'tooltip',
|
38
|
-
'data-placement' => 'right',
|
39
|
-
'title'
|
36
|
+
'class' => 'badge badge-info',
|
37
|
+
'data-bs-toggle' => 'tooltip',
|
38
|
+
'data-bs-placement' => 'right',
|
39
|
+
'data-bs-title' => "Since #{fingerprint.created_at.to_formatted_s(:db)}"
|
40
40
|
}
|
41
41
|
|
42
42
|
content_tag(:span, text, opts)
|
@@ -57,7 +57,7 @@ module NdrError
|
|
57
57
|
end
|
58
58
|
|
59
59
|
def ticket_link_for(fingerprint, small = false) # rubocop:disable Style/OptionalBooleanParameter
|
60
|
-
text =
|
60
|
+
text = bootstrap_icon_tag('asterisk', :bi) + ' View ticket' # rubocop:disable Style/StringConcatenation
|
61
61
|
css = 'btn btn-outline-secondary'
|
62
62
|
css << ' btn-xs' if small
|
63
63
|
|
@@ -67,14 +67,14 @@ module NdrError
|
|
67
67
|
|
68
68
|
def edit_button_for(fingerprint)
|
69
69
|
css = 'btn btn-outline-secondary'
|
70
|
-
text =
|
70
|
+
text = bootstrap_icon_tag('pencil', :bi) + ' Edit Ticket' # rubocop:disable Style/StringConcatenation
|
71
71
|
|
72
72
|
link_to(text, edit_error_fingerprint_path(fingerprint), class: css)
|
73
73
|
end
|
74
74
|
|
75
75
|
def purge_button_for(fingerprint)
|
76
76
|
css = 'btn btn-danger'
|
77
|
-
text =
|
77
|
+
text = bootstrap_icon_tag('trash-fill', :bi) + ' Purge' # rubocop:disable Style/StringConcatenation
|
78
78
|
|
79
79
|
options = {
|
80
80
|
'method' => :delete,
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<%= previous_button_for(@error.previous) %>
|
23
23
|
|
24
24
|
<div class="btn-group">
|
25
|
-
<a class="btn btn-outline-secondary dropdown-toggle" data-toggle="dropdown" href="#">
|
25
|
+
<a class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" href="#">
|
26
26
|
<%= pluralize(@error.similar_errors.length - 1, 'Similar Error') %> Stored
|
27
27
|
<span class="caret"></span>
|
28
28
|
</a>
|
@@ -45,7 +45,7 @@
|
|
45
45
|
|
46
46
|
<% if @fingerprint.caused_error_fingerprints.any? %>
|
47
47
|
<div class="btn-group">
|
48
|
-
<a class="btn btn-outline-secondary dropdown-toggle" data-toggle="dropdown" href="#">
|
48
|
+
<a class="btn btn-outline-secondary dropdown-toggle" data-bs-toggle="dropdown" href="#">
|
49
49
|
<%= pluralize(@fingerprint.caused_error_fingerprints.length, 'Downstream Error') %> Stored
|
50
50
|
<span class="caret"></span>
|
51
51
|
</a>
|
data/lib/ndr_error/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ndr_error
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- NCRS Development Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|