Skip to content

Commit

Permalink
Merge pull request #613 from lihqi/lhq-1129-alpha
Browse files Browse the repository at this point in the history
feat(lb-components): Fix id-induced errors
  • Loading branch information
lihqi authored Nov 29, 2024
2 parents d0d9976 + 4c45cf6 commit 0667695
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -987,7 +987,7 @@ export const AudioPlayer = ({
{audioPlayer}
{regionList.map((region) => {
const { id } = region;
const el = document.querySelector(`[data-id=${id}]`);
const el = document.querySelector(`[data-id="${id}"]`);
return el ? (
<ClipRegion
el={el}
Expand Down

0 comments on commit 0667695

Please sign in to comment.