Skip to content

Commit

Permalink
feat: Add icons to summary table [PT-188404151]
Browse files Browse the repository at this point in the history
This was missing in the initial development.
  • Loading branch information
dougmartin committed Oct 25, 2024
1 parent 1f9fcd4 commit 157d131
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export class RubricSummaryModal extends PureComponent<IProps> {
{criteriaGroup.criteria.map(criterion =>
<div className={tableCss.rubricTableRow} key={criterion.id} id={criterion.id}>
<div className={tableCss.rubricDescription}>
{criterion.iconUrl && <img src={criterion.iconUrl} title={criterion.iconPhrase} />}
<Markdown>{criterion.description}</Markdown>
</div>
{this.renderRatings(criterion)}
Expand Down

0 comments on commit 157d131

Please sign in to comment.