We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91e015 commit c12ca5eCopy full SHA for c12ca5e
.changeset/beige-humans-study.md
@@ -0,0 +1,5 @@
1
+---
2
+'astro': patch
3
4
+
5
+Force error overlay direction to be LTR
packages/astro/src/core/errors/overlay.ts
@@ -584,6 +584,7 @@ class ErrorOverlay extends HTMLElement {
584
super();
585
this.root = this.attachShadow({ mode: 'open' });
586
this.root.innerHTML = overlayTemplate;
587
+ this.dir = 'ltr';
588
589
// theme toggle logic
590
const themeToggle = this.root.querySelector<HTMLInputElement>('.theme-toggle-checkbox');
0 commit comments