🇺🇸United States @redbrickone

Account created on 7 March 2014, over 10 years ago
#

Merge Requests

Recent comments

🇺🇸United States redbrickone

Upon further investigation of the module, I've narrowed it down to possibly being this code here as the culprit: https://git.drupalcode.org/project/layout_builder_iframe_modal/-/blob/1....

// Stores the last scroll position before rebuild happened.
  Drupal.AjaxCommands.prototype.openIframe._scrollPosition = 0

  /**
   * Scrolls to the position before the layout rebuild was triggered.
   *
   * The scroll only happens if the delta between then and now is above a
   * certain threshold. This prevents unnecessary scrolling.
   */
  Drupal.AjaxCommands.prototype.scrollToBlock = function () {
    var scrollY = Drupal.AjaxCommands.prototype.openIframe._scrollPosition
    if (scrollY) {
      window.setTimeout(function() {
        if (Math.abs(window.scrollY - scrollY) > 300) {
          window.scrollTo(0, scrollY)
        }
        Drupal.AjaxCommands.prototype.openIframe._scrollPosition = 0
      }, 200)
    }
  };

I'm running out of time looking into this for this week. I may be able to dig in more next if someone else doesn't find a solution by then.

🇺🇸United States redbrickone

I was hoping a patch from this issue would fix it but didn't have such luck: https://www.drupal.org/project/drupal/issues/3209129#comment-15605759 🐛 Scrolling problems when adding a block via layout builder Needs work

FYI I reverted back to drupal 10.2.4 and the issue still remains. I have updated these modules as well. Unsure which one introduced the issue though.

Better Exposed Filters 6.0.3 → 6.0.5
Ckeditor 5 Paste Filter 1.0.0 → 1.0.1
Config Ignore 8.x-3.2 → 8.x-3.3
Config Split 2.0.0 → 2.0.1
Diff 8.x-1.1 → 8.x-1.3
Focal Point 2.0.3 → 2.1.0
Gin Login 2.0.3 → 2.0.4
Linkit 6.1.3 → 6.1.4
Password Policy 4.0.0 → 4.0.1
Scheduler 2.0.1 → 2.0.3
Simple XML sitemap 4.1.8 → 4.1.9
SVG Image Field 2.3.1 → 2.3.2
Token 8.x-1.13 → 8.x-1.14
WebP 8.x-1.0-rc1 → 8.x-1.0-rc2
Gin Admin Theme 8.x-3.0-rc9 → 8.x-3.0-rc10
Drupal Core - 10.2.4 → 10.2.6

🇺🇸United States redbrickone

I'm also experiencing this issue on a site after upgrading to Drupal 10.2.6. I am experiencing this in Chrome.

🇺🇸United States redbrickone

I have also found a solution for this long outstanding issue: https://www.drupal.org/project/commerce_afterpay/issues/3208440#comment-... Support immediate payment flow RTBC

🇺🇸United States redbrickone

redbrickone made their first commit to this issue’s fork.

🇺🇸United States redbrickone

I'm also curious about the status of getting this in Drupal 10. Any chance to get a patch rolled to 10.2.2?

🇺🇸United States redbrickone

Is there any update on this? I am encountering this in Drupal 9 Views still.
I have a block view display and a page view display in the same view. Exposed form is on the block view. It sends the user to my page view every time.
If I remove the page view display from this view it works as expected.

🇺🇸United States redbrickone

Hi I have encountered the same issue on this version of Cloudflare as well. I am unable to modify the config values on the prod site to get these errors gone. I've created a patch that can be used to allow you to edit the Cloudflare admin config form which will let you enable a Zone & bypass these errors. It seems the root issue does stem from the drush DB updates after updating to this version. This is a workaround for those who need to get past these errors but the root issue should probably still be looked into. The MR in comment #6 should do the trick.

🇺🇸United States redbrickone

redbrickone made their first commit to this issue’s fork.

🇺🇸United States redbrickone

Gotcha, thank you! I will look into this. We also found a route just using CSS so we can probably close this issue. I was under the impression we couldn't modify the styles within the chart which doesn't seem to be the case. Thanks for your prompt reply, you rock!

Production build 0.69.0 2024