Skip to content

Commit

Permalink
fix(notification): adjust querySelector (#756)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlmoravek committed Feb 1, 2024
1 parent cd1bcf7 commit 13b0d37
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ onBeforeMount(() => {
positionClasses("bottom")
) {
parentTop.value = container.value.querySelector(
`&>.${rootClasses.value.join(".")}.${positionClasses("top").join(
`.${rootClasses.value.join(".")}.${positionClasses("top").join(
".",
)}`,
);
parentBottom.value = container.value.querySelector(
`&>.${rootClasses.value.join(".")}.${positionClasses("bottom").join(
`.${rootClasses.value.join(".")}.${positionClasses("bottom").join(
".",
)}`,
);
Expand Down

0 comments on commit 13b0d37

Please sign in to comment.