Skip to content

Instantly share code, notes, and snippets.

@ahebrank
Created November 1, 2023 22:25
Show Gist options
  • Save ahebrank/3ce703bcf641391bc58743d05e19d79b to your computer and use it in GitHub Desktop.
Save ahebrank/3ce703bcf641391bc58743d05e19d79b to your computer and use it in GitHub Desktop.
diff --git a/js/update-slots.js b/js/update-slots.js
index 041bcdf..8f02c35 100644
--- a/js/update-slots.js
+++ b/js/update-slots.js
@@ -31,7 +31,7 @@
Drupal.behaviors.vaa_update_slots = {
attach: function (context, settings) {
- $('.vaa-slots > div').once('vaa_init').each(function () {
+ $(once('vaa_init', '.vaa-slots > div', context)).each(function () {
const $slot = $(this);
const $parent = $slot.parent().parent().closest('fieldset');
diff --git a/viewfield_argument_helper.module b/viewfield_argument_helper.module
index 48a9355..8b6a5b1 100644
--- a/viewfield_argument_helper.module
+++ b/viewfield_argument_helper.module
@@ -27,7 +27,7 @@ function viewfield_argument_helper_help($route_name, RouteMatchInterface $route_
/**
* Implements hook_field_widget_viewfield_select_form_alter().
*/
-function viewfield_argument_helper_field_widget_viewfield_select_form_alter(&$element, FormStateInterface $form_state, $context) {
+function viewfield_argument_helper_field_widget_single_element_viewfield_select_form_alter(&$element, FormStateInterface $form_state, $context) {
if (!\Drupal::currentUser()->hasPermission('use viewfield argument helper')) {
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment