Skip to content

Commit e582316

Browse files
committed
fix: wrap JSX text with quotes in JavaScript expressions
ESLint's react/no-unescaped-entities rule requires quotes in JSX text content to be escaped. Wrapped example text containing quotes in JavaScript string expressions to satisfy the linter. Fixes remaining ESLint errors at line 375.
1 parent 68b5fa8 commit e582316

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/app/pipelines/new/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ export default function NewPipeline() {
372372
placeholder='msg["status"] == "active"'
373373
/>
374374
<p className="mt-1 text-sm text-gray-500">
375-
Example: msg["status"] == "active" or msg["active"] && msg["verified"]
375+
{'Example: msg["status"] == "active" or msg["active"] && msg["verified"]'}
376376
</p>
377377
</div>
378378
<div>

0 commit comments

Comments
 (0)