Skip to content

Commit

Permalink
Merge branch 'main' into codemirror-accessibility-violations
Browse files Browse the repository at this point in the history
  • Loading branch information
srikant-ch5 committed Feb 17, 2025
2 parents 1208d65 + c91140a commit 3932d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1250,6 +1250,7 @@ export default class SVGCanvasRenderer {
const canvasSVG = parentObject
.append("svg")
.attr("class", "svg-area") // svg-area used in tests.
.attr("aria-label", "SVG area")
.attr("data-pipeline-id", this.activePipeline.id)
.attr("width", dims.width)
.attr("height", dims.height)
Expand Down
2 changes: 1 addition & 1 deletion canvas_modules/harness/src/client/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ class App extends React.Component {
// which would cause a refresh.
this.emptyCanvasDiv = (
<div>
<Isvg src={BlankCanvasImage} className="harness-empty-image" />
<Isvg src={BlankCanvasImage} aria-label="Harness empty image" className="harness-empty-image" />
<span className="harness-empty-text">
<FormattedMessage
id={"canvas.emptyText"}
Expand Down

0 comments on commit 3932d26

Please sign in to comment.