Skip to content

Commit

Permalink
Merge pull request #111 from AgricolaDevJP/client-only
Browse files Browse the repository at this point in the history
set client:only attribute value
  • Loading branch information
Arthur1 authored May 19, 2024
2 parents 3f94639 + 225f5ca commit 208a57e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ const { pathname } = Astro.url
---

<PrintLayout title={`カード翻訳シート印刷(${revisionKey})`} pathname={pathname}>
<CardsTranslationPrintList client:only revisionKey={revisionKey} />
<CardsTranslationPrintList client:only="react" revisionKey={revisionKey} />
</PrintLayout>
2 changes: 1 addition & 1 deletion src/pages/[revisionKey]/cards/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ const { pathname } = Astro.url
<Layout title={`カード一覧(${revisionKey})`} pathname={pathname}>
<Container>
<Headline1>カード一覧({revisionKey})</Headline1>
<CardsExplorer client:only revisionKey={revisionKey} decks={decks} products={products} />
<CardsExplorer client:only="react" revisionKey={revisionKey} decks={decks} products={products} />
</Container>
</Layout>

0 comments on commit 208a57e

Please sign in to comment.