Skip to content

Commit

Permalink
fix: value editor typing (#4748)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Oct 18, 2024
1 parent bc5abe0 commit 99876ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/web/components/ValueEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ class ValueEditor extends Component {
<textarea {...rest} />
) : (
<Highlight
data-test={rest['data-test']}
data-test={E2E ? rest['data-test'] : ''}
disabled={rest.disabled}
onChange={rest.disabled ? null : rest.onChange}
onBlur={rest.disabled ? null : rest.onBlur}
Expand Down

0 comments on commit 99876ca

Please sign in to comment.