render_turbo_stream 0.1.29 → 0.1.30
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/render_turbo_stream/version.rb +1 -1
- data/lib/render_turbo_stream.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fceaabe20c5a6533f02917d1cc9512a7941980780ad94e5968b2fe594f9c300e
|
4
|
+
data.tar.gz: 9d12b4e354a672f93e31544e6153b57b16e4ae9fd8c2fae8b316fc2c19c956d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f96b57506c02e8c106f2fac7c920750bd951b635d787c2170408d6aea397e1f3184926878d2306e701aade88a50630a0df7839358e8aa81509e7db43cca66285
|
7
|
+
data.tar.gz: 9ddb505c068cbee6863abc72f2094448f8b68dc6df01201ef87a3dc3e645ca0898fb773da7bdb738facf60d985eeff5fc47eb49cacc696fc63f2e7d9c021ba89
|
data/lib/render_turbo_stream.rb
CHANGED
@@ -90,8 +90,8 @@ module RenderTurboStream
|
|
90
90
|
flash_notices = []
|
91
91
|
end
|
92
92
|
|
93
|
-
flash_notices += add_flash_notices
|
94
|
-
flash_alerts += add_flash_alerts
|
93
|
+
flash_notices += add_flash_notices.to_a
|
94
|
+
flash_alerts += add_flash_alerts.to_a
|
95
95
|
_flash_id = Rails.configuration.x.render_turbo_stream.flash_id
|
96
96
|
flash_id = (_flash_id ? _flash_id : "ERROR, MISSING CONFIG => config.x.render_turbo_stream.flash_id")
|
97
97
|
flash_partial = Rails.configuration.x.render_turbo_stream.flash_partial
|