fix: Correct template literals for aria-label/class/style attributes (#435)

* fix: Correct template literals for aria-label attributes in PostMeta and Pagination components

* fix: Update template literals to use correct syntax in multiple components
This commit is contained in:
Katsuyuki Karasawa
2025-05-02 06:49:07 +09:00
committed by GitHub
parent 3b9574823a
commit 7f0c109b17
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ interface Props {
}
const className = Astro.props.class;
---
<div data-pagefind-body class=`prose dark:prose-invert prose-base !max-w-none custom-md ${className}`>
<div data-pagefind-body class={`prose dark:prose-invert prose-base !max-w-none custom-md ${className}`}>
<!--<div class="prose dark:prose-invert max-w-none custom-md">-->
<!--<div class="max-w-none custom-md">-->
<slot/>