Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ class CodeEditor extends React.Component<CodeEditorProps, CodeEditorState> {
);

const editor = (
<div className={css(styles.codeEditorCode)} ref={this.wrapperRef} tabIndex={0}>
<div className={css(styles.codeEditorCode)} ref={this.wrapperRef} tabIndex={0} dir="ltr">
<MonacoEditor
height={height}
width={width}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ exports[`CodeEditor matches snapshot with all props 1`] = `
/>
<div
class="pf-v5-c-code-editor__code"
dir="ltr"
tabindex="0"
>
<div
Expand Down Expand Up @@ -376,6 +377,7 @@ exports[`CodeEditor matches snapshot without props 1`] = `
>
<div
class="pf-v5-c-code-editor__code"
dir="ltr"
tabindex="0"
>
<div
Expand Down