Skip to content

Commit

Permalink
SAK-49934 Rubrics: Add rubric and criteria titles to aria-label attri…
Browse files Browse the repository at this point in the history
…butes
  • Loading branch information
hornersa committed May 7, 2024
1 parent ccda9aa commit 3264014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class SakaiRubricCriterionEdit extends RubricsElement {
aria-controls="edit-criterion-${this.criterion.id}"
aria-expanded="false"
title="${this._i18n.edit_criterion} ${this.criterion.title}"
aria-label="${this._i18n.edit_criterion}">
aria-label="${this._i18n.edit_criterion} ${this.criterion.title}">
<i class="si si-edit"></i>
</button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class SakaiRubricEdit extends RubricsElement {
aria-controls="edit-rubric-${this.rubric.id}"
aria-expanded="false"
title="${this.tr("edit_rubric")} ${this.rubric.title}"
aria-label="${this.tr("edit_rubric")}">
aria-label="${this.tr("edit_rubric")} ${this.rubric.title}">
<i class="si si-edit"></i>
</button>
Expand Down

0 comments on commit 3264014

Please sign in to comment.