From 338af3f0fecc8c8ced47445c26bbee0a6e82dd6e Mon Sep 17 00:00:00 2001 From: f <f@sutty.nl> Date: Thu, 4 Jul 2024 15:02:17 -0300 Subject: [PATCH 1/3] feat: array.item reutilizable #16718 --- .../controllers/array_controller.js | 2 +- app/views/posts/attributes/_new_array.haml | 2 +- .../posts/attributes/_new_belongs_to.haml | 2 +- .../_new_has_and_belongs_to_many.haml | 2 +- app/views/posts/attributes/_new_has_many.haml | 2 +- .../attributes/_new_predefined_array.haml | 2 +- .../attributes/_new_predefined_value.haml | 2 +- app/views/posts/new_array.haml | 2 +- app/views/posts/new_belongs_to_value.haml | 2 +- app/views/posts/new_has_many_value.haml | 2 +- app/views/targets/array/_item.haml | 21 +++++++++++++++++++ config/locales/en.yml | 6 ++++-- config/locales/es.yml | 6 ++++-- 13 files changed, 39 insertions(+), 14 deletions(-) create mode 100644 app/views/targets/array/_item.haml diff --git a/app/javascript/controllers/array_controller.js b/app/javascript/controllers/array_controller.js index db768ef3..fb74a673 100644 --- a/app/javascript/controllers/array_controller.js +++ b/app/javascript/controllers/array_controller.js @@ -108,7 +108,7 @@ export default class extends Controller { if (!this.isChecked(itemTarget)) continue; this.originalValue.push(itemTarget.dataset.value); - this.newArrayValueURL.searchParams.set("value", itemTarget.dataset.value); + this.newArrayValueURL.searchParams.set("value", itemTarget.dataset?.humanValue || itemTarget.dataset?.value); const placeholder = this.placeholderTarget.content.firstElementChild.cloneNode(true); diff --git a/app/views/posts/attributes/_new_array.haml b/app/views/posts/attributes/_new_array.haml index b8607627..989d734b 100644 --- a/app/views/posts/attributes/_new_array.haml +++ b/app/views/posts/attributes/_new_array.haml @@ -48,7 +48,7 @@ .form-group.mb-0{ id: "#{id}_body" } -# Eliminamos las tildes para poder buscar independientemente de cómo se escriba. - metadata.values.each do |value| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: value } } + = render 'targets/array/item', value: value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: value, checked: metadata.value.include?(value), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' } - content_for :"#{id}_footer" do diff --git a/app/views/posts/attributes/_new_belongs_to.haml b/app/views/posts/attributes/_new_belongs_to.haml index a187e9ea..20b40140 100644 --- a/app/views/posts/attributes/_new_belongs_to.haml +++ b/app/views/posts/attributes/_new_belongs_to.haml @@ -58,7 +58,7 @@ - content_for :"#{id}_body" do .form-group.mb-0{ id: value_list_id } - metadata.values.each_pair do |value, uuid| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } } + = render 'targets/array/item', value: uuid, 'human-value': value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, type: 'radio' -# diff --git a/app/views/posts/attributes/_new_has_and_belongs_to_many.haml b/app/views/posts/attributes/_new_has_and_belongs_to_many.haml index 5dd1039b..d70d9eb4 100644 --- a/app/views/posts/attributes/_new_has_and_belongs_to_many.haml +++ b/app/views/posts/attributes/_new_has_and_belongs_to_many.haml @@ -59,7 +59,7 @@ - content_for :"#{id}_body" do .form-group.mb-0{ id: value_list_id } - metadata.values.each_pair do |value, uuid| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } } + = render 'targets/array/item', value: uuid, 'human-value': value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' } -# diff --git a/app/views/posts/attributes/_new_has_many.haml b/app/views/posts/attributes/_new_has_many.haml index 805636da..601a7e38 100644 --- a/app/views/posts/attributes/_new_has_many.haml +++ b/app/views/posts/attributes/_new_has_many.haml @@ -59,7 +59,7 @@ - content_for :"#{id}_body" do .form-group.mb-0{ id: value_list_id } - metadata.values.each_pair do |value, uuid| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: uuid } } + = render 'targets/array/item', value: uuid, 'human-value': value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: uuid, checked: metadata.value.include?(uuid), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' } -# diff --git a/app/views/posts/attributes/_new_predefined_array.haml b/app/views/posts/attributes/_new_predefined_array.haml index 80a88098..feececc5 100644 --- a/app/views/posts/attributes/_new_predefined_array.haml +++ b/app/views/posts/attributes/_new_predefined_array.haml @@ -47,7 +47,7 @@ .form-group.mb-0{ id: "#{id}_body" } -# Eliminamos las tildes para poder buscar independientemente de cómo se escriba - metadata.values.each_pair do |value, key| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: key } } + = render 'targets/array/item', class: 'mb-2', value: key, 'human-value': value do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: key, checked: metadata.value.include?(key), content: value, data: { action: 'required-checkbox#change', target: 'required-checkbox.checkbox' } - content_for :"#{id}_footer" do diff --git a/app/views/posts/attributes/_new_predefined_value.haml b/app/views/posts/attributes/_new_predefined_value.haml index 5158169d..ba52baf1 100644 --- a/app/views/posts/attributes/_new_predefined_value.haml +++ b/app/views/posts/attributes/_new_predefined_value.haml @@ -57,7 +57,7 @@ - content_for :"#{id}_body" do .form-group.mb-0{ id: value_list_id } - metadata.values.each_pair do |value, key| - .mb-2{ data: { target: 'array.item', 'searchable-value': value.remove_diacritics.downcase, value: value } } + = render 'targets/array/item', value: value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: name, id: random_id, value: key, checked: (metadata.value == key), content: value, type: 'radio' - content_for :"#{id}_footer" do diff --git a/app/views/posts/new_array.haml b/app/views/posts/new_array.haml index 77d64b55..9d6e62ea 100644 --- a/app/views/posts/new_array.haml +++ b/app/views/posts/new_array.haml @@ -1,6 +1,6 @@ - item_id = random_id -.mb-2{ id: item_id, data: { target: 'array.item', 'searchable-value': @value.remove_diacritics.downcase, value: @value } } += render 'targets/array/item', value: @value, class: 'mb-2', id: item_id do .d-flex.flex-row.flex-wrap .flex-grow-1 = render 'bootstrap/custom_checkbox', name: @name, id: random_id, value: @value, checked: true, content: @value diff --git a/app/views/posts/new_belongs_to_value.haml b/app/views/posts/new_belongs_to_value.haml index d1f9c3f9..cc66f680 100644 --- a/app/views/posts/new_belongs_to_value.haml +++ b/app/views/posts/new_belongs_to_value.haml @@ -1,2 +1,2 @@ -.mb-2{ data: { target: 'array.item', 'searchable-value': @value.remove_diacritics.downcase, value: @uuid } } += render 'targets/array/item', value: @uuid, 'human-value': @value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: @name, id: random_id, value: @uuid, checked: true, content: @value, type: 'radio' diff --git a/app/views/posts/new_has_many_value.haml b/app/views/posts/new_has_many_value.haml index b9846475..8479f3e4 100644 --- a/app/views/posts/new_has_many_value.haml +++ b/app/views/posts/new_has_many_value.haml @@ -1,2 +1,2 @@ -.mb-2{ data: { target: 'array.item', 'searchable-value': @value.remove_diacritics.downcase, value: @uuid } } += render 'targets/array/item', value: @uuid, 'human-value': @value, class: 'mb-2' do = render 'bootstrap/custom_checkbox', name: @name, id: random_id, value: @uuid, checked: true, content: @value diff --git a/app/views/targets/array/_item.haml b/app/views/targets/array/_item.haml new file mode 100644 index 00000000..f89a42e5 --- /dev/null +++ b/app/views/targets/array/_item.haml @@ -0,0 +1,21 @@ +-# + Un item de un array. + + Además de los valores por defecto, se pueden pasar otros atributos + para el div del ítem. + + @param :value [String] El valor (requerido) + @param :human-value [String] El valor legible por humanes (opcional) + @param :searchable-value [String] El valor para usar en el filtro (opcional) + +:ruby + local_assigns[:'human-value'] ||= value + local_assigns[:'searchable-value'] ||= local_assigns[:'human-value'].remove_diacritics.downcase + local_assigns.delete(:value) + + data = local_assigns.delete(:data) + data ||= {} + data[:'human-value'] = local_assigns.delete(:'human-value') + data[:'searchable-value'] = local_assigns.delete(:'searchable-value') + +%div{ **local_assigns, data: { target: 'array.item', value: value, **data } }= yield diff --git a/config/locales/en.yml b/config/locales/en.yml index 52f002e6..ce5a9e36 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -722,8 +722,6 @@ en: validation: invalid: "Some fields need attention! Please search for the fields marked as not valid." submitting: "Saving changes, please wait..." - new_array: - remove: "Remove" attributes: add: Add title: @@ -967,3 +965,7 @@ en: edit: "Edit" alert: saved: "Changes were saved!" + targets: + array: + item: + remove: "Remove" diff --git a/config/locales/es.yml b/config/locales/es.yml index 8fe09758..416c3e1a 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -730,8 +730,6 @@ es: validation: invalid: "¡Te falta completar algunos campos! Busca los que estén marcados como no válidos." submitting: "Guardando, por favor espera..." - new_array: - remove: "Eliminar" attributes: add: Agregar title: @@ -977,3 +975,7 @@ es: edit: "Editar" alert: saved: "¡Cambios guardados!" + targets: + array: + item: + remove: "Eliminar" From e9e55945d93984454cd577bca8c08737895f83c8 Mon Sep 17 00:00:00 2001 From: f <f@sutty.nl> Date: Thu, 4 Jul 2024 15:05:58 -0300 Subject: [PATCH 2/3] fix: editar el post de has_one desde su modal #16665 --- app/views/posts/_new_has_one.haml | 2 +- app/views/posts/_new_related_post.haml | 6 ++++-- app/views/posts/attributes/_new_has_one.haml | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/app/views/posts/_new_has_one.haml b/app/views/posts/_new_has_one.haml index 54a370cd..f5286670 100644 --- a/app/views/posts/_new_has_one.haml +++ b/app/views/posts/_new_has_one.haml @@ -1,2 +1,2 @@ -= render 'posts/new_related_post', post: post += render 'posts/new_related_post', post: post, modal_id: modal_id %input{ type: 'hidden', name: name, value: value } diff --git a/app/views/posts/_new_related_post.haml b/app/views/posts/_new_related_post.haml index 046080c9..9e342a6c 100644 --- a/app/views/posts/_new_related_post.haml +++ b/app/views/posts/_new_related_post.haml @@ -1,4 +1,6 @@ :ruby + local_assigns[:modal_id] ||= 'generic_modal' + image = nil description = nil @@ -6,9 +8,9 @@ description = post.post.image.value['description'] end -.col.mb-3.p-1 +.col.mb-3.p-1{ data: { controller: 'modal' } } = render('bootstrap/card', image: image, description: description, title: post.title, class: 'h-100') do - if post.post.attribute?(:description) %p.card-text= post.post.description.value - = link_to t('.edit'), edit_site_post_path(post.site, post.path), class: 'btn btn-secondary' + = render 'bootstrap/btn', content: t('.edit'), data: { action: 'modal#showAnother', 'modal-show-value': local_assigns[:modal_id] }, id: random_id diff --git a/app/views/posts/attributes/_new_has_one.haml b/app/views/posts/attributes/_new_has_one.haml index c082da6d..09cc9b7f 100644 --- a/app/views/posts/attributes/_new_has_one.haml +++ b/app/views/posts/attributes/_new_has_one.haml @@ -34,7 +34,7 @@ .row.no-gutters.placeholder-glow{ id: target_id } -# @todo issue-7537 - if !metadata.empty? && (indexed_post = site.indexed_posts.find_by(post_id: metadata.value)) - = render 'posts/new_has_one', post: indexed_post, name: name, value: metadata.value + = render 'posts/new_has_one', post: indexed_post, name: name, value: metadata.value, modal_id: modal_id -# El modal se genera por fuera del formulario, para poder enviar los From d7fa0a9deae328d85ae293dbf10948da1fda009f Mon Sep 17 00:00:00 2001 From: fauno <fauno@endefensadelsl.org> Date: Thu, 4 Jul 2024 18:09:56 +0000 Subject: [PATCH 3/3] ci: assets [skip ci] --- .../.sprockets-manifest-a1cbb907961024fc033716a7d30668dd.json | 2 +- public/packs/js/application-259c401740dfed47822c.js | 3 --- public/packs/js/application-259c401740dfed47822c.js.br | 3 --- public/packs/js/application-259c401740dfed47822c.js.gz | 3 --- public/packs/js/application-259c401740dfed47822c.js.map | 3 --- public/packs/js/application-259c401740dfed47822c.js.map.br | 3 --- public/packs/js/application-259c401740dfed47822c.js.map.gz | 3 --- public/packs/js/application-8f69d0f11e0ca7be2504.js | 3 +++ ...SE.txt => application-8f69d0f11e0ca7be2504.js.LICENSE.txt} | 0 public/packs/js/application-8f69d0f11e0ca7be2504.js.br | 3 +++ public/packs/js/application-8f69d0f11e0ca7be2504.js.gz | 3 +++ public/packs/js/application-8f69d0f11e0ca7be2504.js.map | 3 +++ public/packs/js/application-8f69d0f11e0ca7be2504.js.map.br | 3 +++ public/packs/js/application-8f69d0f11e0ca7be2504.js.map.gz | 3 +++ public/packs/manifest.json | 2 +- public/packs/manifest.json.br | 4 ++-- public/packs/manifest.json.gz | 2 +- 17 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 public/packs/js/application-259c401740dfed47822c.js delete mode 100644 public/packs/js/application-259c401740dfed47822c.js.br delete mode 100644 public/packs/js/application-259c401740dfed47822c.js.gz delete mode 100644 public/packs/js/application-259c401740dfed47822c.js.map delete mode 100644 public/packs/js/application-259c401740dfed47822c.js.map.br delete mode 100644 public/packs/js/application-259c401740dfed47822c.js.map.gz create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js rename public/packs/js/{application-259c401740dfed47822c.js.LICENSE.txt => application-8f69d0f11e0ca7be2504.js.LICENSE.txt} (100%) create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js.br create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js.gz create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js.map create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js.map.br create mode 100644 public/packs/js/application-8f69d0f11e0ca7be2504.js.map.gz diff --git a/public/assets/.sprockets-manifest-a1cbb907961024fc033716a7d30668dd.json b/public/assets/.sprockets-manifest-a1cbb907961024fc033716a7d30668dd.json index 34bc1f5b..9b56abb9 100644 --- a/public/assets/.sprockets-manifest-a1cbb907961024fc033716a7d30668dd.json +++ b/public/assets/.sprockets-manifest-a1cbb907961024fc033716a7d30668dd.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:88c1f1a739d34084f336007dde9c7f90ebbe91b704679428becd515344eb62d3 +oid sha256:e0932b1a060d222c9cd5e311838663a15604c1eedb5b99463f71efc046325a7d size 11449 diff --git a/public/packs/js/application-259c401740dfed47822c.js b/public/packs/js/application-259c401740dfed47822c.js deleted file mode 100644 index cb0eb957..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5b756828333dc54fe38ad3678c73d524861ebbaf5769c5ee8d08029de1d440a -size 1669027 diff --git a/public/packs/js/application-259c401740dfed47822c.js.br b/public/packs/js/application-259c401740dfed47822c.js.br deleted file mode 100644 index 8dd982f1..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js.br +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:705e0f848187878be1d60030522cb5a22c2ac9ba12a5cbe606f34ae595c01348 -size 368569 diff --git a/public/packs/js/application-259c401740dfed47822c.js.gz b/public/packs/js/application-259c401740dfed47822c.js.gz deleted file mode 100644 index de8d598f..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6478bcd675c7131936c8b364ca263a98fcecbba781b656e47d00dfd74e200893 -size 485739 diff --git a/public/packs/js/application-259c401740dfed47822c.js.map b/public/packs/js/application-259c401740dfed47822c.js.map deleted file mode 100644 index c466c583..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js.map +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5cbe23e77de63a2bff04cee1d72f11118ec5c471dc7417b239da0cb248da55ae -size 6438002 diff --git a/public/packs/js/application-259c401740dfed47822c.js.map.br b/public/packs/js/application-259c401740dfed47822c.js.map.br deleted file mode 100644 index 06322c48..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js.map.br +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e01ac77f9e79769442ce155489cffd92b91f68baf5eead1a9a2d9e220041f99a -size 1386372 diff --git a/public/packs/js/application-259c401740dfed47822c.js.map.gz b/public/packs/js/application-259c401740dfed47822c.js.map.gz deleted file mode 100644 index 5852fea3..00000000 --- a/public/packs/js/application-259c401740dfed47822c.js.map.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b0bca76541a1751d32f45d4346289b406dcfeef045d91b7e980812bec3d52b5b -size 1714681 diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js b/public/packs/js/application-8f69d0f11e0ca7be2504.js new file mode 100644 index 00000000..91367b53 --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b235c4eb1139e1a4bdf9daaecd159f529b10f5514687573ba1ecc00bba1fb6 +size 1669121 diff --git a/public/packs/js/application-259c401740dfed47822c.js.LICENSE.txt b/public/packs/js/application-8f69d0f11e0ca7be2504.js.LICENSE.txt similarity index 100% rename from public/packs/js/application-259c401740dfed47822c.js.LICENSE.txt rename to public/packs/js/application-8f69d0f11e0ca7be2504.js.LICENSE.txt diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js.br b/public/packs/js/application-8f69d0f11e0ca7be2504.js.br new file mode 100644 index 00000000..eff908dc --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js.br @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:767f755f8dda62aac2ded222ace1b32108d07a4583cb864e342bf5d35b3fef95 +size 368411 diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js.gz b/public/packs/js/application-8f69d0f11e0ca7be2504.js.gz new file mode 100644 index 00000000..5d2fba2a --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f35c3299dd87f5309d3adf96570b80264f169d032c252b1f4da0d1296a98267 +size 485766 diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js.map b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map new file mode 100644 index 00000000..87e0cc84 --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9732c120406374b709a194dbccff611bc43476c0d38621c45df981a31b220e7e +size 6438103 diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.br b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.br new file mode 100644 index 00000000..d644a0dd --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.br @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ce48f1afd5d1703f265109f5da46d241cc989699ada0a9113ca9de4746ca0b +size 1385749 diff --git a/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.gz b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.gz new file mode 100644 index 00000000..cdbd6562 --- /dev/null +++ b/public/packs/js/application-8f69d0f11e0ca7be2504.js.map.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51218081dca07043ac39ea4d95be8ff9d10cbb2e008de9316950e5b93b01cca8 +size 1714684 diff --git a/public/packs/manifest.json b/public/packs/manifest.json index 5ccf8064..c2bc76a3 100644 --- a/public/packs/manifest.json +++ b/public/packs/manifest.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:648a4dadfef23e3fe03acc6516ba71df923e5aba6e8f0b75cf1bded97fb34a17 +oid sha256:414eb620095846df6f046f3f83cd9090c12589e3ebc9e4fcbceb482da98c84ff size 1426 diff --git a/public/packs/manifest.json.br b/public/packs/manifest.json.br index b5185d85..d7091ee2 100644 --- a/public/packs/manifest.json.br +++ b/public/packs/manifest.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e01d7beb1f47c3855436e310fd644ff9f2bbc0cd64a626320664b3554f8dca07 -size 322 +oid sha256:ea29a8d38a174a6b0932f2a932bf82a02f1fb84f9b6a1ecdcb84b3e9ee40d688 +size 320 diff --git a/public/packs/manifest.json.gz b/public/packs/manifest.json.gz index 3d50c3a0..79ffc690 100644 --- a/public/packs/manifest.json.gz +++ b/public/packs/manifest.json.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b85747137fa8de98eaadf30c5abad212c14e44be2fbfc86ee9194304970d050 +oid sha256:7e2259446551432aac80b002c692acc7583688ed82a3a2c081f3181c769acfb7 size 365