Skip to content

Commit

Permalink
move aria-labelledby on <Creators> up a node to avoid a console error
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbocarsly committed Feb 21, 2024
1 parent e35596d commit 5a6afdd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/CellInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
</div>
<div class="form-group col-md-3 col-sm-3 col-6 pb-3 pr-2">
<label id="creators">Creators</label>
<div class="mx-auto">
<Creators aria-labelledby="creators" :creators="ItemCreators" :size="36" />
<div aria-labelledby="creators" class="mx-auto">
<Creators :creators="ItemCreators" :size="36" />
</div>
</div>
<div class="col-md-6 col-sm-7 pr-2">
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/components/SampleInformation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
</div>
<div class="form-group col-md-3 col-sm-3 col-6 pb-3">
<label id="creators">Creators</label>
<div class="mx-auto">
<Creators aria-labelledby="creators" :creators="ItemCreators" :size="36" />
<div aria-labelledby="creators" class="mx-auto">
<Creators :creators="ItemCreators" :size="36" />
</div>
</div>
<div class="col-md-6 col-sm-7 pr-2">
Expand Down

0 comments on commit 5a6afdd

Please sign in to comment.