Skip to content

Commit

Permalink
Fix bad query selector ✅
Browse files Browse the repository at this point in the history
  • Loading branch information
wotschofsky committed Nov 29, 2022
1 parent 74dc2f8 commit a739558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/GrantsInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@ export default class GrantsInterface {
` <sub class="consent-manager--table-description"></sub>` +
` </label>` +
`</td>`;
row.querySelector('consent-manager--table-label').textContent =
row.querySelector('.consent-manager--table-label').textContent =
category.label;
row.querySelector('consent-manager--table-description').textContent =
row.querySelector('.consent-manager--table-description').textContent =
category.description;

if (!category.required) {
Expand Down

0 comments on commit a739558

Please sign in to comment.