ErrorBoundary: ensure error text is LTR

This commit is contained in:
Alex Gleason 2023-10-10 20:31:45 -05:00
parent fd592460a4
commit cad377c910
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ class ErrorBoundary extends React.PureComponent<Props, State> {
className='block h-48 w-full rounded-md border-gray-300 bg-gray-100 p-4 font-mono text-gray-900 shadow-sm focus:border-primary-500 focus:ring-2 focus:ring-primary-500 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-100 sm:text-sm'
value={errorText}
onClick={this.handleCopy}
dir='ltr'
readOnly
/>
)}