- Issue created by @Squiggles
- π΅πPhilippines mikeocana
I can't reproduce the issue using D10.2.6. I will try using 10.3.1
- πΊπΈUnited States dcam
Just an educated guess, but a possible of this is line 109 of StyleguideController:
$item['title'] = $this->t('@title', ['@title' => $item['title']]);
As you know some parts of the styleguide are dynamically generated and are dependent on your specific site's configuration, namely the image styles and layouts. If any of them are named '1', then that's how this could happen. You can test it by casting the item title to a string like this:
$item['title'] = $this->t('@title', ['@title' => (string) $item['title']]);